[yambar] Let afternoon start at 13:00 instead of 14:00
This commit is contained in:
parent
2fb55ea9af
commit
37def981c5
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ def time_of_day(t):
|
||||||
return "night"
|
return "night"
|
||||||
elif t.hour < 10:
|
elif t.hour < 10:
|
||||||
return "morning"
|
return "morning"
|
||||||
elif t.hour < 14:
|
elif t.hour < 13:
|
||||||
return "noon"
|
return "noon"
|
||||||
elif t.hour < 19:
|
elif t.hour < 19:
|
||||||
return "afternoon"
|
return "afternoon"
|
||||||
|
|
Loading…
Reference in a new issue