feat: add powermenu using configured dmenu tool
This commit is contained in:
parent
8745cf3eff
commit
b72c2a344d
2 changed files with 14 additions and 2 deletions
|
@ -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
|
||||||
|
'';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue