aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/sysact
diff options
context:
space:
mode:
authorawy <awy@awy.one>2025-11-14 23:43:38 +0300
committerawy <awy@awy.one>2025-11-14 23:43:38 +0300
commitc7a88a07b9287db9c129914483f6b3ae1ab5404c (patch)
tree73c227c5e8519eb9135f46984e4fc067b316ed1b /.local/bin/sysact
downloadmangoslice-c7a88a07b9287db9c129914483f6b3ae1ab5404c.tar.gz
init
Diffstat (limited to '.local/bin/sysact')
-rwxr-xr-x.local/bin/sysact36
1 files changed, 36 insertions, 0 deletions
diff --git a/.local/bin/sysact b/.local/bin/sysact
new file mode 100755
index 0000000..1b5918e
--- /dev/null
+++ b/.local/bin/sysact
@@ -0,0 +1,36 @@
+#!/bin/sh
+
+# A mew wrapper script for system functions.
+export WM="mango"
+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%%)*}"
+}
+
+lock(){
+ mpc pause
+ pauseallmpv
+ wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
+ kill -44 $(pidof someblocks)
+ swaylock
+ wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
+ kill -44 $(pidof someblocks)
+}
+
+case "$(printf " lock\n󰩈 leave $WM\n renew $WM\n hibernate\n reboot\n shutdown\n󰒲 sleep\n󰍹 display off" | mew -i -p 'Action: ')" in
+ ' lock') lock ;;
+ "󰩈 leave $WM") mmsg -d quit ;;
+ " renew $WM") mmsg -d reload ;;
+ ' hibernate') $ctl hibernate -i ;;
+ '󰒲 sleep') $ctl suspend -i ;;
+ ' reboot') $ctl reboot -i ;;
+ ' shutdown') $ctl poweroff -i ;;
+ '󰍹 display off') xset dpms force off ;;
+ *) exit 1 ;;
+esac