dotfiles/.local/bin/tools/calendaradd

7 lines
164 B
Plaintext
Raw Normal View History

2021-06-01 16:59:54 +02:00
#!/bin/sh
calcurse -i "$1"
#summary assumes ics format
summary="$(grep "SUMMARY[^:]*:" "$1" | cut -d':' -f2)"
notify-send "Calendar event added" "$summary"
rm "$1"