This commit is contained in:
Noa Aarts 2024-11-20 10:53:42 +01:00
parent 9d79ba5536
commit e502de408b
Signed by: noa
GPG key ID: 1850932741EFF672
3 changed files with 6 additions and 2 deletions

View file

@ -126,6 +126,8 @@ spawn-at-startup "@keepass@"
spawn-at-startup "@thunderbird@" spawn-at-startup "@thunderbird@"
spawn-at-startup "@appbar@" spawn-at-startup "@appbar@"
@extra@
// Uncomment this line to ask the clients to omit their client-side decorations if possible. // Uncomment this line to ask the clients to omit their client-side decorations if possible.
// If the client will specifically ask for CSD, the request will be honored. // If the client will specifically ask for CSD, the request will be honored.
// Additionally, clients will be informed that they are tiled, removing some client-side rounded corners. // Additionally, clients will be informed that they are tiled, removing some client-side rounded corners.

View file

@ -168,7 +168,9 @@
keepass = "keepassxc"; keepass = "keepassxc";
thunderbird = "thunderbird"; thunderbird = "thunderbird";
appbar = "${pkgs.waybar}/bin/waybar"; appbar = "${pkgs.waybar}/bin/waybar";
extra = lib.strings.concatStringsSep "\nspawn-at-startup \"" [ "${pkgs.dunst}/bin/dunst\"" ]; extra =
"spawn-at-startup \""
+ lib.strings.concatStringsSep "\nspawn-at-startup \"" [ "${pkgs.dunst}/bin/dunst\"" ];
}; };
}; };
}; };

View file

@ -26,7 +26,7 @@ pkgs.writeShellScriptBin "fuzzel-power" ''
elif [ "$selected_option" == "$logout" ] elif [ "$selected_option" == "$logout" ]
then then
echo "logout" echo "logout"
niri msg quit --skip-confirmation ${pkgs.niri}/bin/niri msg action quit --skip-confirmation
else else
echo "No match" echo "No match"
fi fi