blob: e8ac78e92dec743f70ff4b25e75a6b1b093ed43e (
plain) (
blame)
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
|
#!/bin/bash
# Swayidle toggle
function toggle {
if pgrep "swayidle" > /dev/null
then
pkill swayidle
notify-send -r 5556 -u normal " Swayidle Inactive"
else
swayidle timeout 300 'swaylock -F -i ~/.cache/wallpaper --effect-blur 10x5 --clock --indicator' timeout 600 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on' &
notify-send -r 5556 -u normal " Swayidle Active"
fi
}
case $1 in
toggle)
toggle
;;
*)
if pgrep "swayidle" > /dev/null
then
icon=""
else
icon=""
fi
printf "%s" "$icon "
;;
esac
|