2023-09-18 17:46:41 +00:00
|
|
|
#/bin/sh
|
|
|
|
|
|
|
|
if [ -f "/usr/bin/swayidle" ]; then
|
|
|
|
echo "swayidle is installed."
|
2023-10-04 17:39:24 +00:00
|
|
|
swayidle -w timeout 600 'swaylock -f' timeout 660 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on'
|
2023-09-18 17:46:41 +00:00
|
|
|
else
|
|
|
|
echo "swayidle not installed."
|
|
|
|
fi;
|