2021-05-13 12:26:52 +00:00
|
|
|
#!/bin/sh
|
2020-09-23 09:25:17 +00:00
|
|
|
|
2023-02-02 22:26:51 +00:00
|
|
|
action=$(printf "shutdown\nreboot\nlogout\nautostart" | $DMENU)
|
2020-09-23 09:25:17 +00:00
|
|
|
|
|
|
|
case "$action" in
|
2022-12-12 17:43:54 +00:00
|
|
|
shutdown) systemctl poweroff -i ;;
|
|
|
|
reboot) systemctl reboot ;;
|
|
|
|
logout) systemctl --user exit ;;
|
2022-12-16 20:46:19 +00:00
|
|
|
autostart) autostart-manage run ;;
|
2022-12-12 17:43:54 +00:00
|
|
|
*) ;; esac
|