[yambar] Let afternoon start at 13:00 instead of 14:00

This commit is contained in:
Midgard 2022-09-01 15:09:51 +02:00
parent 2fb55ea9af
commit 37def981c5
Signed by untrusted user who does not match committer: midgard
GPG key ID: 511C112F1331BBB4

View file

@ -32,7 +32,7 @@ def time_of_day(t):
return "night"
elif t.hour < 10:
return "morning"
elif t.hour < 14:
elif t.hour < 13:
return "noon"
elif t.hour < 19:
return "afternoon"