diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-06-27 13:23:15 +0200 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-06-27 13:23:15 +0200 |
| commit | f4effc7665bf280c8587c6c65e4ee769d0244363 (patch) | |
| tree | 24a0246a65b637ef7b37c922f26bb2790e393f0a /shell-scripts/sysact | |
| parent | fe1eea2ebb749fc89a56a972d03a7797b9cc36e8 (diff) | |
stuff
Diffstat (limited to 'shell-scripts/sysact')
| -rwxr-xr-x | shell-scripts/sysact | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/shell-scripts/sysact b/shell-scripts/sysact new file mode 100755 index 0000000..64c2f32 --- /dev/null +++ b/shell-scripts/sysact @@ -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 |
