aboutsummaryrefslogblamecommitdiff
path: root/.config/yambar/scripts/calendar.sh
blob: 98f94c08e36693475ca80cda10798256640aa4b7 (plain) (tree)
1
2
3
4
5
6




                         
                                                                                                                                                                                                      



















                                               
#!/bin/bash

# Calendar script

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

function EditCalendar() {
  echo 
}

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