big overhaul

This commit is contained in:
Ryan Wolfe
2023-03-05 11:59:23 -05:00
parent fa3fd3e373
commit 0b91dd8235
1165 changed files with 2107 additions and 8 deletions

26
.local/bin/sysact Executable file
View File

@@ -0,0 +1,26 @@
#!/bin/sh
# A dmenu wrapper script for system functions.
export WM="dwm"
case "$(readlink -f /sbin/init)" in
*systemd*) ctl='systemctl' ;;
*) ctl='loginctl' ;;
esac
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
'🔒 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