From 9cf28e1fd78d8e497eb155f04d0f5c9923acdd76 Mon Sep 17 00:00:00 2001 From: Krzysztof kuhy Rudnicki Date: Fri, 4 Jul 2025 14:20:28 +0200 Subject: [PATCH] feat: friday starts at 14:00 --- scripts/pacman_wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pacman_wrapper.sh b/scripts/pacman_wrapper.sh index 63e2d5b..0dc2992 100755 --- a/scripts/pacman_wrapper.sh +++ b/scripts/pacman_wrapper.sh @@ -134,7 +134,7 @@ function is_weekday() { return 0 # Is weekday # Friday before 4PM is weekday, after 4PM is weekend elif [[ $day_of_week -eq 5 ]]; then - if [[ $hour -lt 15 ]]; then + if [[ $hour -lt 14 ]]; then return 0 # Is weekday (Friday before 4PM) else return 1 # Is weekend (Friday after 4PM)