From 7c09dd08ae2443b02eda763647f244faea2c205e Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Wed, 31 Jan 2024 01:19:19 +0100 Subject: add events --- bin/cal-render.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 bin/cal-render.sh (limited to 'bin/cal-render.sh') diff --git a/bin/cal-render.sh b/bin/cal-render.sh new file mode 100755 index 0000000..9203f7e --- /dev/null +++ b/bin/cal-render.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +# Depends: ical2html + +set -eu + +OUTDIR=events + +mkdir --parents "$OUTDIR/study" "$OUTDIR/moodle" + +icalmerge _CALENDARS/study/*.ics "$OUTDIR"/study/study.ics +icalmerge _CALENDARS/moodle/*.ics "$OUTDIR"/moodle/moodle.ics + +ical2html --monday --title "RUC HumTek-23 Study" 20240201 P140D "$OUTDIR"/study/study.ics > "$OUTDIR"/study/index.html +ical2html --monday --title "RUC HumTek-23 Moodle" 20240201 P140D "$OUTDIR"/moodle/moodle.ics > "$OUTDIR"/moodle/index.html -- cgit v1.2.3