mirror of
https://github.com/vbrandl/dotfiles
synced 2024-11-22 16:03:50 +01:00
8 lines
164 B
Bash
8 lines
164 B
Bash
|
#!/usr/bin/env sh
|
||
|
notify_khal() {
|
||
|
while inotifywait -r -e modify -e create -e delete "${HOME}/.calendars/"; do
|
||
|
"${HOME}/bin/vdirsyncer.sh"
|
||
|
done
|
||
|
}
|
||
|
notify_khal &
|