15 lines
331 B
Plaintext
15 lines
331 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# A dmenu wrapper script for system functions.
|
||
|
|
||
|
cmds="\
|
||
|
lock screen slock
|
||
|
leave dwm kill -TERM $(pidof -s dwm)
|
||
|
refresh dwm kill -HUP $(pidof -s dwm)
|
||
|
reboot sudo -A reboot
|
||
|
shutdown sudo -A shutdown -h now"
|
||
|
|
||
|
choice="$(echo "$cmds" | cut -d' ' -f 1 | dmenu)" || exit 1
|
||
|
|
||
|
`echo "$cmds" | grep "^$choice " | cut -d ' ' -f2-`
|