summaryrefslogtreecommitdiff
path: root/ar/.local
diff options
context:
space:
mode:
Diffstat (limited to 'ar/.local')
-rwxr-xr-xar/.local/bin/sysact6
1 files changed, 3 insertions, 3 deletions
diff --git a/ar/.local/bin/sysact b/ar/.local/bin/sysact
index 64ef127..c76fa0b 100755
--- a/ar/.local/bin/sysact
+++ b/ar/.local/bin/sysact
@@ -23,14 +23,14 @@ wmpid() { # This function is needed if there are multiple instances of the windo
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
+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') lock ;;
"🚪 leave $WM") kill -TERM "$(wmpid)" ;;
-"♻️ renew $WM") kill -HUP "$(wmpid)" ;;
+"♻ renew $WM") kill -HUP "$(wmpid)" ;;
'🐻 hibernate') slock $ctl hibernate -i ;;
'💤 sleep') slock $ctl suspend -i ;;
'🔃 reboot') $ctl reboot -i ;;
-'🖥️shutdown') $ctl poweroff -i ;;
+'🖥shutdown') $ctl poweroff -i ;;
'📺 display off') xset dpms force off ;;
*) exit 1 ;;
esac