blob: c5334bfee2d87dad61bc693ef3e7e85a329d4fbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
chk_idle=$(pgrep swayidle)
if [ -n "$chk_idle" ]; then
pkill swayidle && notify-send "SWAYIDLE" "Idling stopped"
else
setsid -f swayidle -w \
timeout 600 'swaylock -f' \
timeout 630 'niri msg action power-off-monitors' \
resume 'niri msg action power-on-monitors' \
before-sleep 'swaylock -f' && \
notify-send "SWAYIDLE" "Idling started"
fi
|