feat: add powermenu using configured dmenu tool

This commit is contained in:
Nydragon 2024-12-31 01:00:57 +01:00
parent 8745cf3eff
commit b72c2a344d
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
2 changed files with 14 additions and 2 deletions

View file

@ -5,8 +5,9 @@
... ...
}: }:
let let
inherit (pkgs.writers) writeFishBin; inherit (pkgs.writers) writeFishBin writeBashBin;
inherit (lib.my) getExe; inherit (lib.my) getExe;
runner = config.modules.system.roles.desktop.runner;
nixos-rebuild = nixos-rebuild =
name: word: name: word:
writeFishBin name '' writeFishBin name ''
@ -111,4 +112,15 @@ in
--use-remote-sudo &| ${getExe pkgs.nix-output-monitor} --use-remote-sudo &| ${getExe pkgs.nix-output-monitor}
''; '';
powerMenu = writeBashBin "power-menu" ''
case "$(echo -e "Shutdown\nRestart\nHibernate\nLogout\nSuspend\nLock" | ${runner.dmenu} )" in
Shutdown) exec systemctl poweroff ;;
Restart) exec systemctl reboot ;;
Logout) exec loginctl terminate-session "$${XDG_SESSION_ID-}" ;;
Hibernate) exec systemctl hibernate ;;
Suspend) exec systemctl suspend ;;
Lock) exec loginctl lock-session "$${XDG_SESSION_ID-}" ;;
esac
'';
} }

View file

@ -63,7 +63,7 @@ lib.mkIf osConfig.programs.sway.enable {
lib.mkOptionDefault { lib.mkOptionDefault {
"${mod}+p" = "exec ${getExe pkgs.hyprlock}"; "${mod}+p" = "exec ${getExe pkgs.hyprlock}";
"${mod}+Shift+p" = "exec ${getExe pkgs.rofi} -show p -modi p:${getExe pkgs.rofi-power-menu}"; "${mod}+Shift+p" = "exec ${getExe pkgs.scripts.powerMenu}";
# Reload the config file # Reload the config file
"${mod}+Shift+c" = "reload"; "${mod}+Shift+c" = "reload";
# Kill the focused window # Kill the focused window