2020-04-15 02:10:38 +00:00
|
|
|
|
#!/bin/sh
|
2022-04-28 19:30:28 +00:00
|
|
|
|
|
2020-04-15 02:10:38 +00:00
|
|
|
|
# A dmenu wrapper script for system functions.
|
2022-04-28 19:30:28 +00:00
|
|
|
|
export WM="dwm"
|
2020-05-06 13:50:00 +00:00
|
|
|
|
case "$(readlink -f /sbin/init)" in
|
2021-09-23 18:54:58 +00:00
|
|
|
|
*systemd*) ctl='systemctl' ;;
|
|
|
|
|
*) ctl='loginctl' ;;
|
2020-05-06 13:50:00 +00:00
|
|
|
|
esac
|
|
|
|
|
|
2022-04-28 19:30:28 +00:00
|
|
|
|
wmpid(){ # This function is needed if there are multiple instances of the window manager.
|
|
|
|
|
tree="$(pstree -ps $$)"
|
|
|
|
|
tree="${tree#*$WM(}"
|
|
|
|
|
echo "${tree%%)*}"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
2021-09-23 18:54:58 +00:00
|
|
|
|
'🔒 lock') slock ;;
|
2022-04-28 19:30:28 +00:00
|
|
|
|
"🚪 leave $WM") kill -TERM "$(wmpid)" ;;
|
|
|
|
|
"♻️ renew $WM") kill -HUP "$(wmpid)" ;;
|
2021-09-23 18:54:58 +00:00
|
|
|
|
'🐻 hibernate') slock $ctl hibernate ;;
|
|
|
|
|
'💤 sleep') slock $ctl suspend ;;
|
2022-01-22 00:27:56 +00:00
|
|
|
|
'🔃 reboot') $ctl reboot -i ;;
|
2022-01-22 07:00:46 +00:00
|
|
|
|
'🖥️shutdown') $ctl poweroff -i ;;
|
2021-09-23 18:54:58 +00:00
|
|
|
|
'📺 display off') xset dpms force off ;;
|
|
|
|
|
*) exit 1 ;;
|
|
|
|
|
esac
|