blob: 4b33e61d89ada55de35561e20a7251383e53c87f (
plain) (
tree)
|
|
#!/bin/bash
#
# a simple dmenu session script
#
###
DMENU='dmenu'
choice=$(echo -e "logout\nsuspend\nhibernate\nshutdown\nreboot" | $DMENU)
case "$choice" in
logout) kill -9 -1 & ;;
suspend) systemctl suspend & ;;
hibernate) systemctl hibernate & ;;
shutdown) systemctl shutdown & ;;
reboot) systemctl reboot & ;;
esac
|