diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-08-03 08:40:00 +0100 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-08-03 08:40:00 +0100 |
commit | 08330f8102fdb53483fced47a9f71046fbf87740 (patch) | |
tree | a4ef6f15c49208b122d78dfef1a4c2176386f3da /.config/eww/scripts/calendar.sh | |
parent | 943db6dd6eb2b2ca0d0b6487156031b0505be7c8 (diff) |
Replace notify-send for the fyi notification client
Diffstat (limited to '.config/eww/scripts/calendar.sh')
-rwxr-xr-x | .config/eww/scripts/calendar.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/eww/scripts/calendar.sh b/.config/eww/scripts/calendar.sh index 98f94c0..63789d2 100755 --- a/.config/eww/scripts/calendar.sh +++ b/.config/eww/scripts/calendar.sh @@ -3,7 +3,7 @@ # 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 + 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() { |