Exclude TYPO3 general calendar from notifications

It is not my calendar and only synced to have an overview.
Events in there are not important to me and should not notify me.
This commit is contained in:
Daniel Siepmann 2024-02-06 12:20:22 +01:00
parent 51acd348a3
commit d1b97c1847
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -17,7 +17,7 @@ let
text = ''
date=$(date "+%H:%M:00")
events=$(khal list -d contact_birthdays --notstarted "$date" "$1" | (grep -v -e "Urlaub" -e "Today"; true))
events=$(khal list -d contact_birthdays -d typo3 --notstarted "$date" "$1" | (grep -v -e "Urlaub" -e "Today"; true))
if [ -z "$events" ]; then
exit 0;
fi