blob: bb2d40071ce42238182b280ee251218aa1bc9d57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/bin/sh
# A rofi -dmenu wrapper script for system functions.
export WM="Hyprland"
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%%)*}"
}
lock(){
mpc pause
pauseallmpv
wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
kill -44 $(pidof waybar)
swaylock
wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
kill -44 $(pidof waybar)
}
case "$(printf "🔒 lock\n🚪 leave $WM\n♻️ renew $WM\n🐻 hibernate\n🔃 reboot\n🖥 shutdown\n💤 sleep\n📺 display off" | rofi -dmenu -i -p 'Action: ')" in
'🔒 lock') lock ;;
"🚪 leave $WM") hyprctl dispatch exit ;;
"♻️ renew $WM") hyprctl reload ;;
'🐻 hibernate') $ctl hibernate -i ;;
'💤 sleep') $ctl suspend -i ;;
'🔃 reboot') $ctl reboot -i ;;
'🖥️shutdown') $ctl poweroff -i ;;
'📺 display off') xset dpms force off ;;
*) exit 1 ;;
esac
|