2023-05-03 21:19:35 +07:00
|
|
|
#!/bin/zsh
|
|
|
|
if [[ -z "$1" ]]; then
|
|
|
|
swayidle -w \
|
|
|
|
timeout 310 'swaylock' \
|
2024-01-27 15:42:16 +07:00
|
|
|
timeout 360 "wlopm --off '*'" resume "wlopm --on '*'" \
|
|
|
|
before-sleep "swaylock"
|
2023-05-03 21:19:35 +07:00
|
|
|
fi
|
2024-01-27 15:42:16 +07:00
|
|
|
|
|
|
|
#timeout 300 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
|
|
|
|
|
2023-05-03 21:19:35 +07:00
|
|
|
if [[ $1 == "-k" ]]; then
|
|
|
|
killall swayidle
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
if [[ $1 != "-k" ]]; then
|
|
|
|
echo 'wrong syntax, do idle or idle -k'
|
|
|
|
fi
|