mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 11:43:03 +03:00
16 lines
294 B
Bash
Executable file
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
|