final test before bed

This commit is contained in:
2025-08-18 20:13:02 +02:00
parent 7a5287943d
commit f91f6a85f1
7 changed files with 20 additions and 13 deletions

View File

@@ -35,7 +35,7 @@ in {
then ",bitdepth,${toString m.bitDepth}"
else "";
in "${m.name},${
if m.enabled
if m.enable
then "${resolution},${position},${scale}${transformStr}${bitdepthStr}"
else "disable"
}"
@@ -44,7 +44,7 @@ in {
workspace = map (
m: "${m.workspace},monitor:${m.name}"
) (lib.filter (m: m.enabled && m.workspace != null) config.settings.monitors);
) (lib.filter (m: m.enable && m.workspace != null) config.settings.monitors);
windowrule = [
"size 843 650, initialTitle:^(floatcal)$"

View File

@@ -9,7 +9,6 @@
commonExecOnce = [
"pamixer --set-volume 50"
"uwsm app -- blueman-applet"
"uwsm app -- keepassxc"
"uwsm app -- nm-applet --indicator"
];
@@ -33,13 +32,16 @@ in {
[
"uwsm app -- mullvad-vpn"
"uwsm app -- solaar -w hide -b regular"
"uwsm app -- blueman-applet"
]
++ commonExecOnce;
})
(mkIf (host == "bunk") {
programs.hyprland.settings.exec-once =
[]
[
"uwsm app -- blueman-applet"
]
++ commonExecOnce;
})