nix-dotfiles/scripts/shutdownmenu.sh
vorboyvo 0c0e98b61a Changed locale settings to French.
Abandoned fcitx5 and switched to wayland-native keyboard layout management.
Changed various other settings to help with the last.
Added gammastep for night shift.
2024-04-13 23:18:20 -04:00

18 lines
265 B
Bash

case `printf "Annuler\nSuspendre\nÉteindre\nRedémarrer\nQuitter" | $DMENU_COMMAND` in
"Annuler")
:
;;
"Suspendre")
systemctl suspend
;;
"Éteindre")
systemctl poweroff
;;
"Redémarrer")
systemctl reboot
;;
"Quitter")
swaymsg exit
;;
esac