mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 20:23:11 +02:00
feat: weekend now starts at 3PM friday lets goo
This commit is contained in:
parent
0f6c1035f9
commit
fd656c7b3c
@ -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 16 ]]; then
|
||||
if [[ $hour -lt 15 ]]; then
|
||||
return 0 # Is weekday (Friday before 4PM)
|
||||
else
|
||||
return 1 # Is weekend (Friday after 4PM)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user