From c80a54e42b52ce297f0f2f71af23c562832025c7 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Fri, 24 Jan 2025 20:35:27 +0900 Subject: init --- ar/.local/bin/sysact | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 ar/.local/bin/sysact (limited to 'ar/.local/bin/sysact') diff --git a/ar/.local/bin/sysact b/ar/.local/bin/sysact new file mode 100755 index 0000000..3706d2b --- /dev/null +++ b/ar/.local/bin/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 -- cgit v1.2.3