From e2add462c0d66120867cdb7181a0d9c413f3e4c1 Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Tue, 6 Feb 2024 20:44:09 +0000 Subject: Initial commit of Eww config --- .config/eww/scripts/calendar.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 .config/eww/scripts/calendar.sh (limited to '.config/eww/scripts/calendar.sh') 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//;s/..0m/<\/span><\/b>/")" -r 124 +} + +function EditCalendar() { + echo +} + +case "$1" in + show) + ShowCalendar + ;; + + edit) + EditCalendar + ;; + + *) + echo $"Usage: ${0##*/} {show|edit}" + exit 1 + +esac -- cgit v1.2.3