script-linux/power

16 lines
221 B
Plaintext
Raw Permalink Normal View History

2024-03-04 11:16:56 +01:00
#!/bin/bash
2024-03-04 12:59:09 +01:00
act=$(echo -e "shutdown\nreboot\nlock" | dmenu -p "action:")
2024-03-04 11:16:56 +01:00
case $act in
"shutdown")
shutdown 0
;;
"reboot")
reboot
;;
"lock")
lockscreen
;;
esac