15 lines
466 B
Bash
Executable file
15 lines
466 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Script to disable for an hour or immediately continue wlsunset. 'Toggle'
|
|
|
|
# Check if wlsunset is still running
|
|
pid=$(pgrep wlsunset)
|
|
|
|
if [[ -z ${pid} ]] ; then
|
|
# Start wlsunset right away.
|
|
wlsunset -l 50 -L 4 -t 2500 &
|
|
else
|
|
# Currently stop wlsunset but restart in an hour.
|
|
kill ${pid}
|
|
~/.scripts/notify.sh 'Stopping sunset' 'Restarting in an hour'
|
|
at now +1 hours -f ~/.scripts/wlsunset.sh
|
|
fi
|