try hyprpanel

This commit is contained in:
2025-08-24 09:08:22 -05:00
parent aa4528b70a
commit e0d552d309
4 changed files with 9 additions and 3 deletions

View File

@@ -5,6 +5,7 @@
./git
./nh
./hyprland
./hyprpanel
./terminal
./rofi
./pywal

View File

@@ -33,6 +33,10 @@
exec-once=hyprctl output create headless HEADLESS-2
exec-once=hyprctl keyword monitor HDMI-A-2,disable
exec-once=${pkgs.wayvnc}/bin/wayvnc 0.0.0.0 -o HEADLESS-2
'' else if config.homeconfig.host == "container" then ''
monitor=HEADLESS-2,1920x1080@60,0x0,1
exec-once=hyprctl output create headless HEADLESS-2
exec-once=${pkgs.wayvnc}/bin/wayvnc 0.0.0.0 -o HEADLESS-2
'' else '''';
in monitor + ''
source = /home/nathan/.config/hypr/main.conf

View File

@@ -1,6 +1,6 @@
{ config, lib, ... }: {
options.homeconfig.hyprpanel.enable = lib.mkOption {
options.homeconfig.hyprpanel.enable = with lib; mkOption {
type = with types; bool;
default = false;
};