2021-05-13 12:26:52 +00:00
|
|
|
#!/bin/sh
|
2020-09-23 09:25:17 +00:00
|
|
|
|
2022-03-21 21:20:12 +00:00
|
|
|
action=$(echo -e "Shutdown\nReboot\nLogout" | $MENU)
|
2020-09-23 09:25:17 +00:00
|
|
|
|
|
|
|
case "$action" in
|
|
|
|
"Shutdown")
|
|
|
|
systemctl poweroff -i
|
|
|
|
;;
|
|
|
|
"Reboot")
|
|
|
|
systemctl reboot
|
|
|
|
;;
|
|
|
|
"Logout")
|
2021-03-30 20:59:59 +00:00
|
|
|
systemctl --user exit
|
2020-09-23 09:25:17 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|