nix-dotfiles/scripts/shutdownmenu.sh

18 lines
265 B
Bash
Raw Normal View History

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