dotfiles/bin/scripts/sunrise-notify

16 lines
294 B
Bash
Executable file

#!/bin/bash
time=$(sunwait poll daylight rise ${LAT} $LON)
function on_sunset() {
notify-send "Sunset" "$(date)"
}
function on_sunrise() {
notify-send "Sunrise" "$(date)"
}
if [[ ${time} == 'DAY' ]]; then
sunwait wait set && on_sunset
else
sunwait wait rise && on_sunrise
fi