dotfiles/scripts/lockscreentime.sh
Stefan Spangenberg 800a6b61af init
2023-10-19 15:42:05 +02:00

12 lines
285 B
Bash
Executable File

#/bin/sh
timeswaylock=600
timeoff=660
if [ -f "/usr/bin/swayidle" ]; then
echo "swayidle is installed."
swayidle -w timeout $timeswaylock 'swaylock -f' timeout $timeoff 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on'
else
echo "swayidle not installed."
fi;