mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
implemented loginctl and fixed shebang
This commit is contained in:
parent
ede14e5420
commit
71cab885f0
@ -1,19 +1,18 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
# A dmenu wrapper script for system functions.
|
||||
case "$(readlink -f /sbin/init)" in
|
||||
*systemd*) slp='systemctl suspend'; hib='systemctl suspend-then-hibernate -i' ;;
|
||||
*runit*) slp='sudo -A zzz -z'; hib='sudo -A zzz -Z' ;;
|
||||
*) exit 1 ;;
|
||||
*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 $hib ;;
|
||||
'💤 sleep') slock $slp ;;
|
||||
'🔃 reboot') sudo -A shutdown -h now ;;
|
||||
'🖥️shutdown') sudo -A shutdown -r now ;;
|
||||
'🐻 hibernate') slock $ctl hibernate ;;
|
||||
'💤 sleep') slock $ctl suspend ;;
|
||||
'🔃 reboot') $ctl reboot ;;
|
||||
'🖥️shutdown') $ctl poweroff ;;
|
||||
'📺 display off') xset dpms force off ;;
|
||||
*) exit 1 ;;
|
||||
esac
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user