Fix incorrect timeout vars

This commit is contained in:
John Mertz 2023-07-21 17:06:24 -04:00
parent d58589fb3c
commit 978daa7c10
Signed by: jpm
GPG Key ID: E9C5EA2D867501AB
1 changed files with 2 additions and 2 deletions

View File

@ -85,9 +85,9 @@ elif [[ $1 == "start" ]]; then
resume "$0 undim" \ resume "$0 undim" \
timeout $LOCK_TIMEOUT "$0 lock" \ timeout $LOCK_TIMEOUT "$0 lock" \
resume "$0 unlock" \ resume "$0 unlock" \
timeout $DPMS_TIMEOUT "$0 sleep" \ timeout $SLEEP_TIMEOUT "$0 sleep" \
resume "$0 unsleep" \ resume "$0 unsleep" \
timeout $SUSPEND_TIMEOUT "$0 hibernate" \ timeout $HIBERNATE_TIMEOUT "$0 hibernate" \
resume "$0 unhibernate" resume "$0 unhibernate"
elif [[ $1 == "daemon" ]]; then elif [[ $1 == "daemon" ]]; then
nohup $0 start 2>/dev/null & nohup $0 start 2>/dev/null &