diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-05-27 20:10:46 +0100 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-05-27 20:10:46 +0100 |
commit | 8fd9724a30bdc49cdf862e9e604023793b56d493 (patch) | |
tree | 5b6df962459934ed63fe7518dbab26d333e0ee7a | |
parent | 0d20198aa41a9bff1a95ca02822c32a830446855 (diff) |
Updated notify-send line to work with Chimera Linux
-rwxr-xr-x | .config/yambar/scripts/calendar.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/yambar/scripts/calendar.sh b/.config/yambar/scripts/calendar.sh index 353c471..d3e9196 100755 --- a/.config/yambar/scripts/calendar.sh +++ b/.config/yambar/scripts/calendar.sh @@ -3,7 +3,7 @@ # Calendar script function ShowCalendar() { - notify-send -i "calendar" " 📅 Calendar" "$(cal --color=always | sed "s/..7m/<b><span color=\"#fabd2f\">/;s/..0m/<\/span><\/b>/")" --hint=string:x-canonical-private-synchronous:calendar + 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() { |