From 3d3370fed4a8232c65f3695259e792fc32af7962 Mon Sep 17 00:00:00 2001 From: The_miro Date: Thu, 23 Oct 2025 19:58:08 +0200 Subject: [PATCH] calendar now doesn't break on mondays and sundays --- desktopenvs/hyprland/scripts/calender-fix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktopenvs/hyprland/scripts/calender-fix.sh b/desktopenvs/hyprland/scripts/calender-fix.sh index 1c8b562..8f05d7a 100755 --- a/desktopenvs/hyprland/scripts/calender-fix.sh +++ b/desktopenvs/hyprland/scripts/calender-fix.sh @@ -22,6 +22,6 @@ fi -cal -m | sed "s/\b $today \b/[$today]/" | sed "s/\b $weekday \b/[$weekday]/" +cal -m | sed -z 's/\n/ \n /g' | sed "s/\b $today \b/[$today]/" | sed "s/\b $weekday \b/[$weekday]/"