synix/modules/home/hyprland/applications/powermenu-bemenu/powermenu-bemenu.nix
sid 95a533c876
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 3s
initial commit
2026-02-23 20:34:35 +01:00

10 lines
317 B
Nix

{ config, pkgs, ... }:
(pkgs.writeShellScriptBin "powermenu-bemenu" ''
case $(echo -e "shutdown\nreboot\nlock\nkill" | bemenu -p "") in
shutdown) systemctl poweroff ;;
reboot) systemctl reboot ;;
lock) "${config.programs.hyprlock.package}/bin/hyprlock" ;;
kill) hyprctl dispatch exit ;;
esac
'')