Hyprland-dotfiles/scripts/lockscreentime.sh

21 lines
625 B
Bash
Raw Normal View History

2023-09-18 13:46:41 -04:00
#/bin/sh
2023-10-04 08:18:59 -04:00
# ___ _ _ _ _
# |_ _|__| | | ___| |_(_)_ __ ___ ___
# | |/ _` | |/ _ \ __| | '_ ` _ \ / _ \
# | | (_| | | __/ |_| | | | | | | __/
# |___\__,_|_|\___|\__|_|_| |_| |_|\___|
#
#
# by Stephan Raabe (2023)
# -----------------------------------------------------
timeswaylock=600
timeoff=660
2023-09-18 13:46:41 -04:00
if [ -f "/usr/bin/swayidle" ]; then
echo "swayidle is installed."
2023-10-04 08:18:59 -04:00
swayidle -w timeout $timeswaylock 'swaylock -f' timeout $timeoff 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on'
2023-09-18 13:46:41 -04:00
else
echo "swayidle not installed."
fi;