18 lines
688 B
Bash
Executable file
18 lines
688 B
Bash
Executable file
#!/bin/sh
|
||
# A dmenu wrapper script for system functions.
|
||
case "$(readlink -f /sbin/init)" in
|
||
*systemd*) ctl='systemctl' ;;
|
||
*) ctl='loginctl' ;;
|
||
esac
|
||
|
||
case "$(printf "🔒 lock\n🚪 leave dwm\n♻️ renew dwm\n🐻 hibernate\n🔃 reboot\n🖥️shutdown\n💤 sleep\n📺 display off" | dmenu -i -p 'Action: ')" in
|
||
'🔒 lock') slock ;;
|
||
'🚪 leave dwm') kill -TERM "$(pgrep -u "$USER" "\bdwm$")" ;;
|
||
'♻️ renew dwm') kill -HUP "$(pgrep -u "$USER" "\bdwm$")" ;;
|
||
'🐻 hibernate') slock $ctl hibernate ;;
|
||
'💤 sleep') slock $ctl suspend ;;
|
||
'🔃 reboot') $ctl reboot -i ;;
|
||
'🖥️shutdown') $ctl powerof -if ;;
|
||
'📺 display off') xset dpms force off ;;
|
||
*) exit 1 ;;
|
||
esac
|