waybar: Fix event module spacing

Added a new state which should fix the icon spacing issues:

When we have no upcoming events or upcoming events but none today, we
only display the icon and so we do not add any additional spacing.
(This is alt state `event` or `no-event`)

Only if we have an upcoming event today (alt state `event-today`) are we
printing it directly on the status bar and only then should be have
additional spacing. So we have an icon (the same as for event) with the
correct spacing so that whether there is text on the statusbar or not,
we space correctly.
This commit is contained in:
Marty Oehme 2025-03-08 08:41:53 +01:00
parent 47a96a2d42
commit ea066eebb5
Signed by: Marty
GPG key ID: 4E535BC19C61886E
2 changed files with 8 additions and 4 deletions
desktop/.config/waybar

View file

@ -64,6 +64,7 @@
"format": "{icon}{0}", // issue tracked here https://github.com/Alexays/Waybar/issues/3623
"format-icons": {
"event": "",
"event-today": " ",
"no-event": "",
},
},

View file

@ -27,13 +27,16 @@ for line in lines:
if len(clean_line) and clean_line[0] not in ["0", "1", "2"]:
clean_line = "\n<b>" + clean_line + "</b>"
new_lines.append(clean_line)
output = "\n".join(new_lines).strip()
data["alt"] = "no-event"
data["tooltip"] = output
if today in output:
if today in output: # an event today!
data["alt"] = "event-today"
data["text"] = output.split("\n")[1]
elif output: # an event in the week!
data["alt"] = "event"
data["tooltip"] = output
else: # no events
data["alt"] = "no-event"
print(json.dumps(data))