dotfiles/.config/sway/startwlrscreensaver.sh

83 lines
2.0 KiB
Bash
Raw Normal View History

2021-12-12 17:54:28 +01:00
#!/bin/bash
# Basic configuration variables
2021-12-13 21:55:51 +01:00
ScreensaverTime="1200" # 20 minutes
2021-12-12 17:54:28 +01:00
monitorOne="DP-1" # First monitor
monitorTwo="DP-2" # Second monitor
monitorThree="" # Third monitor
# Load script for load monitors config quickly from resume
LoadConfigResume="${HOME}/.config/sway/startwlrrandr.sh"
2021-12-12 18:03:30 +01:00
# StateFile variable
stateFile="${HOME}/.config/sway/screen-state"
2021-12-12 17:54:28 +01:00
# Function for sleep monitors
function sleepMonitors() {
# Check monitor 3
if [ -z "${monitorThree}" ] ; then
echo "Monitor 3 is empty or disabled"
else
echo "Sleep monitor 3"
wlr-randr --output ${monitorThree} --off
fi
# Check monitor 2
if [ -z "${monitorTwo}" ] ; then
echo "Monitor 2 is empty or disabled"
else
echo "Sleep monitor 2"
wlr-randr --output ${monitorTwo} --off
fi
# Check monitor 1
if [ -z "${monitorOne}" ] ; then
echo "Monitor 1 is empty or disabled"
else
echo "Sleep monitor 1"
wlr-randr --output ${monitorOne} --off
fi
2021-12-12 18:03:30 +01:00
echo "sleep" > ${stateFile}
2021-12-12 17:54:28 +01:00
}
# Function for resume monitors
function resumeMonitors() {
# Check monitor 3
if [ -z "${monitorThree}" ] ; then
echo "Monitor 3 is empty or disabled"
else
echo "Resume monitor 3"
wlr-randr --output ${monitorThree} --on
fi
# Check monitor 2
if [ -z "${monitorTwo}" ] ; then
echo "Monitor 2 is empty or disabled"
else
echo "Resume monitor 2"
wlr-randr --output ${monitorTwo} --on
fi
# Check monitor 1
if [ -z "${monitorOne}" ] ; then
echo "Monitor 1 is empty or disabled"
else
echo "Resume monitor 1"
wlr-randr --output ${monitorOne} --on
fi
# Load monitors config quickly
bash ${LoadConfigResume} screensaver
2021-12-12 18:03:30 +01:00
echo "resume" > ${stateFile}
2021-12-12 17:54:28 +01:00
}
# Boot parameters
if [ -z "${1}" ] ; then
# Kill previous process
echo "Trying to kill previous process"
killall -9 swayidle
2021-12-13 21:55:51 +01:00
sleep 3
2021-12-12 17:54:28 +01:00
# Init swayidle command
swayidle timeout ${ScreensaverTime} "bash ${0} sleep" resume "bash ${0} resume"
elif [ "${1}" == "sleep" ] ; then
sleepMonitors
elif [ "${1}" == "resume" ] ; then
resumeMonitors
fi