aboutsummaryrefslogtreecommitdiff
path: root/.config/eww/scripts/calendar.sh
blob: f077c591c22114d6ce89e72428c2a388c901ddc1 (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() {
	notify-send --hint=string:x-canonical-private-synchronous:calendar -u normal -i "calendar"  "    📅 Calendar" "$(cal --color=always | sed "s/..7m/<b><span color=\"#fabd2f\">/;s/..0m/<\/span><\/b>/")"
}

function EditCalendar() {
  echo 
}

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