summaryrefslogtreecommitdiffstats
path: root/.local/bin/sysact
blob: e73981fccc7970352857e029d0b219bfc1bd3982 (plain) (blame)
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.

# For non-systemd init systems.
case "$(readlink -f /sbin/init)" in
	*runit*) hib="sudo -A zzz" ;;
	*openrc*) reb="sudo -A openrc-shutdown -r"; shut="sudo -A openrc-shutdown -p" ;;
esac

cmds="\
🔒 lock		slock
🚪 leave dwm	kill -TERM $(pgrep -u $USER "\bdwm$")
♻ renew dwm	kill -HUP $(pgrep -u $USER "\bdwm$")
🐻 hibernate	${hib:-sudo -A systemctl suspend-then-hibernate}
🔃 reboot	${reb:-sudo -A reboot}
🖥 shutdown	${shut:-sudo -A shutdown -h now}"

choice="$(echo "$cmds" | cut -d'	' -f 1 | dmenu)" || exit 1

`echo "$cmds" | grep "^$choice	" | cut -d '	' -f2-`