voidrice/.local/bin/sysact
Hekuran 15d09bac36
sysact rewrite and minor stuff (#1000)
* minor forgoten stuff

we already have shutdown in sudo loop

* why was this still here? it belongs in ~/.config/

* what the actual phucc

* implemented loginctl and fixed shebang
2021-09-23 14:54:58 -04:00

18 lines
682 B
Bash
Executable file
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
# A dmenu wrapper script for system functions.
case "$(readlink -f /sbin/init)" in
*systemd*) ctl='systemctl' ;;
*) ctl='loginctl' ;;
esac
case "$(printf "🔒 lock\n🚪 leave dwm\n♻ renew dwm\n🐻 hibernate\n💤 sleep\n🔃 reboot\n🖥shutdown\n📺 display off" | dmenu -i -p 'Action: ')" in
'🔒 lock') slock ;;
'🚪 leave dwm') kill -TERM "$(pgrep -u "$USER" "\bdwm$")" ;;
'♻️ renew dwm') kill -HUP "$(pgrep -u "$USER" "\bdwm$")" ;;
'🐻 hibernate') slock $ctl hibernate ;;
'💤 sleep') slock $ctl suspend ;;
'🔃 reboot') $ctl reboot ;;
'🖥shutdown') $ctl poweroff ;;
'📺 display off') xset dpms force off ;;
*) exit 1 ;;
esac