2024-04-13 23:18:20 -04:00
|
|
|
case `printf "Annuler\nSuspendre\nÉteindre\nRedémarrer\nQuitter" | $DMENU_COMMAND` in
|
|
|
|
|
"Annuler")
|
2024-01-29 13:43:19 -05:00
|
|
|
:
|
|
|
|
|
;;
|
2024-04-13 23:18:20 -04:00
|
|
|
"Suspendre")
|
2024-01-29 13:43:19 -05:00
|
|
|
systemctl suspend
|
|
|
|
|
;;
|
2024-04-13 23:18:20 -04:00
|
|
|
"Éteindre")
|
2024-01-29 13:43:19 -05:00
|
|
|
systemctl poweroff
|
|
|
|
|
;;
|
2024-04-13 23:18:20 -04:00
|
|
|
"Redémarrer")
|
2024-01-29 13:43:19 -05:00
|
|
|
systemctl reboot
|
|
|
|
|
;;
|
2024-04-13 23:18:20 -04:00
|
|
|
"Quitter")
|
2024-01-30 15:21:59 -05:00
|
|
|
swaymsg exit
|
2024-01-29 13:43:19 -05:00
|
|
|
;;
|
2024-01-29 13:48:01 -05:00
|
|
|
esac
|