Hyprland-dotfiles/scripts/lockscreentime.sh
2023-09-18 19:46:41 +02:00

9 lines
239 B
Bash
Executable File

#/bin/sh
if [ -f "/usr/bin/swayidle" ]; then
echo "swayidle is installed."
swayidle -w timeout 60 'swaylock -f' timeout 100 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on'
else
echo "swayidle not installed."
fi;