mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
19 lines
656 B
Bash
Executable File
19 lines
656 B
Bash
Executable File
#!/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\nshutdown\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
|