blob: 20787fef8b1b3396847243da14b1e0f9a3afc374 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
[ -d "$HOME/.calcurse" ] && data_dir="$HOME/.calcurse" || data_dir="${XDG_DATA_HOME:-$HOME/.local/share}/calcurse"
cd "$data_dir" || exit
# Do not do anything when synchronizing with a CalDAV server.
[ -f caldav/lock ] && exit
# Run the CalDAV synchronization script.
if [ -d caldav ] && command -v calcurse-caldav >/dev/null; then
(
date="$(date +'%b %d %H:%M:%S')"
notify-send "📅 Calcurse" "Loading and syncing with caldav server..."
echo "$date Running calcurse-caldav from the pre-load hook..."
timeout 60 calcurse-caldav
rc=$?
if [ $rc -eq 124 ]; then
notify-send "📅 Calcurse" "❌ Syncing timed out"
elif [ $rc -gt 0 ]; then
notify-send "📅 Calcurse" "❌ Syncing failed (see logs)"
else
notify-send "📅 Calcurse" "Calendar synced"
fi
echo
rm caldav/lock
) >>caldav/log 2>&1
fi
|