scripts/system/services/hourly

20 lines
257 B
Fish
Executable File

#!/usr/bin/env fish
if not test "$DISPLAY"
exit 0
end
vdirsyncer sync
set content (khal list today tomorrow)
if test "$content" != "No events"
notify-send \
-a 'Calendar Reminder' \
-u critical \
-i dialog-information \
"$content"
end
## EOF