aboutsummaryrefslogtreecommitdiff
path: root/.config/eww/scripts/calendar.sh
blob: 63789d2f50ed674e20b7f38c208b99a83e55ecaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash

# Calendar script

function ShowCalendar() {
	fyi -a "Calendar" --hint string:x-canonical-private-synchronous:calendar "     📅 Calendar" "$(cal | sed "s/\<$(date +%-d)\>/<span color='#fabd2f'><b>$(date +%-d)<\/b><\/span>/")"
}

function EditCalendar() {
  echo 
}

case "$1" in
        show)
            ShowCalendar
            ;;
         
        edit)
            EditCalendar
            ;;
         
        *)
            echo $"Usage: ${0##*/} {show|edit}"
            exit 1
 
esac