changes before turning into a flake

This commit is contained in:
2024-10-31 23:43:37 -06:00
parent cf627acdb0
commit bd50a7ce71
77 changed files with 252 additions and 131 deletions

View File

@@ -1,10 +0,0 @@
#!/usr/bin/env fish
function exporg_cal -d "Update gnome-calendar using emacs events"
set -l calendar_file ~/Documents/Calendar.ics
emacsclient -e "(org-icalendar-combine-agenda-files)"
string replace -a "DTSTART:" 'DTSTART;TZID=/freeassociation.sourceforge.net/America/Mexico_City:
' (cat $calendar_file) >$calendar_file
string replace -a "DTEND:" 'DTEND;TZID=/freeassociation.sourceforge.net/America/Mexico_City:
' (cat $calendar_file) >$calendar_file
kill (ps -efa | grep calendar | awk '{print $2}' | head -n 2)
end