diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-02-06 20:44:09 +0000 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-02-06 20:44:09 +0000 |
commit | e2add462c0d66120867cdb7181a0d9c413f3e4c1 (patch) | |
tree | 4b313161d3300eeb5196d0b49d716cbec2bdc57f /.config/eww/scripts/calendar.sh | |
parent | 7620f87b79f7e8a4cfb6f672094a138518420d7a (diff) |
Initial commit of Eww config
Diffstat (limited to '.config/eww/scripts/calendar.sh')
-rwxr-xr-x | .config/eww/scripts/calendar.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.config/eww/scripts/calendar.sh b/.config/eww/scripts/calendar.sh new file mode 100755 index 0000000..3c6b16f --- /dev/null +++ b/.config/eww/scripts/calendar.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# Calendar script + +function ShowCalendar() { + notify-send -i "calendar" " 📅 Calendar" "$(cal --color=always | sed "s/..7m/<b><span color=\"#fabd2f\">/;s/..0m/<\/span><\/b>/")" -r 124 +} + +function EditCalendar() { + echo +} + +case "$1" in + show) + ShowCalendar + ;; + + edit) + EditCalendar + ;; + + *) + echo $"Usage: ${0##*/} {show|edit}" + exit 1 + +esac |