2020-03-08 10:19:00 +01:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2020-03-16 16:04:42 +01:00
|
|
|
WHAT="$(printf "Shutdown\nSuspend\nLock\nReboot" | dmenu -i -p 'What do you want?' -h 24)"
|
2020-03-08 10:19:00 +01:00
|
|
|
if [ -z "$WHAT" ]; then exit; fi
|
|
|
|
|
|
|
|
case "$WHAT" in
|
|
|
|
Shutdown) systemctl poweroff;;
|
2020-04-07 11:57:37 +02:00
|
|
|
Suspend) sh ~/.scripts/lockscreen; systemctl suspend;;
|
2020-03-16 16:04:42 +01:00
|
|
|
Lock) sh ~/.scripts/lockscreen;;
|
2020-04-07 11:57:37 +02:00
|
|
|
Reboot) systemctl reboot
|
2020-03-08 10:19:00 +01:00
|
|
|
esac
|