I am having an issue with the waybar not showing details after an update. It was looking like this:
But it used to look like this:
So I asked an LLM to fix it and got it working, it also persisted after couple restarts, so I am sharing it here if anyone wants to implement it into the code. Here are the steps I followed to fix:
1 - I disabled the ~/.config/autostart/ArctisManagerSystray.desktop (Commented all the lines to test)
2 - Created a ~/.config/systemd/user/lam-gui.service with the text:
[Unit]
Description=Arctis Manager tray
After=graphical-session.target waybar.service
Wants=graphical-session.target
[Service]
Type=simple
ExecStart=/usr/bin/lam-gui --systray
Restart=on-failure
RestartSec=2
[Install]
WantedBy=default.target
3 - Then executed this:
systemctl --user daemon-reload
systemctl --user enable --now lam-gui.service
Voila, fixed
Also, @tonitch suggested that this could be solved maybe if you wait for graphical-session indeed. but I would think a better fix could be found
I am having an issue with the waybar not showing details after an update. It was looking like this:
But it used to look like this:
So I asked an LLM to fix it and got it working, it also persisted after couple restarts, so I am sharing it here if anyone wants to implement it into the code. Here are the steps I followed to fix:
1 - I disabled the
~/.config/autostart/ArctisManagerSystray.desktop(Commented all the lines to test)2 - Created a
~/.config/systemd/user/lam-gui.servicewith the text:3 - Then executed this:
Voila, fixed
Also, @tonitch suggested that
this could be solved maybe if you wait for graphical-session indeed. but I would think a better fix could be found