#!/bin/bash

echo "Heute:"
calcurse -a \
    --format-apt '%S - %E %m\n' \
    --format-recur-apt '%S - %e %m\n' \
    --format-event ' - %m\n' \
    --format-recur-event ' - %m\n' | sed '1d'

echo -e "\nMorgen:"
calcurse -a -r \
    --startday=$(date +"%F" --date tomorrow) \
    --format-apt '%S - %E %m\n' \
    --format-recur-apt '%S - %e %m\n' \
    --format-event ' - %m\n' \
    --format-recur-event ' - %m\n' | sed '1d'

