blob: 4bb92dc5a9e9a631473728b2bd1a99ae0f8e9817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
# A dmenu wrapper script for system functions.
export WM="dwm"
ctl='systemctl'
wmpid(){ # This function is needed if there are multiple instances of the window manager.
echo "$(pidof dwm)"
}
case "$(printf "🔒 lock\n🚪 leave $WM\n♻️ renew $WM\n🐻 hibernate\n🔃 reboot\n🖥️shutdown\n💤 sleep\n📺 display off" | dmenu -i -p 'Action: ')" in
'🔒 lock') slock ;;
"🚪 leave $WM") kill -TERM "$(wmpid)" ;;
"♻️ renew $WM") kill -HUP "$(wmpid)" ;;
'🐻 hibernate') slock $ctl hibernate -i ;;
'💤 sleep') slock $ctl suspend -i ;;
'🔃 reboot') $ctl reboot -i ;;
'🖥️shutdown') $ctl poweroff -i ;;
'📺 display off') xset dpms force off ;;
*) exit 1 ;;
esac
|