waybar: Fix display when there is no event
This commit is contained in:
parent
5e4d888da7
commit
8dafa364e0
|
@ -241,6 +241,9 @@ in
|
|||
events_today = khal(["list", "today", "today", "-df", ""]).rstrip().split("\n")
|
||||
events_2d = khal(["list", "today", "tomorrow", "-df", "<b>{name}, {date}</b>"]).rstrip()
|
||||
|
||||
if len(events_today) == 1 and events_today[0] == "No events":
|
||||
events_today = []
|
||||
|
||||
if len(events_today) == 0:
|
||||
text = " "
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue