this post was submitted on 21 Mar 2024
79 points (95.4% liked)

Linux

54020 readers
1265 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 

in my config file exists...

exec-once = zsh -c 'sleep 1' && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar

Why? Because waybar crashes sometimes when I turn my monitor off/on, I documented this here: https://github.com/Alexays/Waybar/issues/3047

...this opens waybar if it crashes... and if that crashes, it opens another waybar, and you'll notice, if that one crashes, it opens another one... now you may have seen the pattern here but in case you didn't, that one will then lead to another waybar...

Is there a less ridiculous way of making waybar open every time when waybar crashes, giving me better fault tolerance?

all 20 comments
sorted by: hot top controversial new old
[–] Shadow 67 points 1 year ago (2 children)

while true; do waybar; done

[–] [email protected] 8 points 1 year ago
[–] [email protected] 6 points 1 year ago
[–] [email protected] 50 points 1 year ago

I think OPs solution is fucking hilarious

[–] [email protected] 43 points 1 year ago (1 children)

Ok firstly that's hilarious. Secondly I'm pretty sure && means "execute the second thing if the first thing exits with code 0" so if waybar is segfaulting it shouldn't execute any of the other waybars; if you were to do it this way (while true or a systemd service as suggested in the comments makes more sense) a semicolon would probably make sense?

[–] [email protected] 21 points 1 year ago (1 children)

Yeah I noticed it wasn't actually working and for some reason assumed that it was because it crashed so many times that I ran out of waybars, so I added a million after that, and you're totally right, I know better than that, thanks!

[–] [email protected] 42 points 1 year ago (1 children)

Just make a user systemd unit if one doesn't already exist, set to relaunch on failure, then all set.

[–] [email protected] 32 points 1 year ago

I would install a systemd user service with the setting Restart=always. If your window manager is started with systemd, or defines a systemd target you can configure the waybar service to start and stop automatically with the window manager.

[–] [email protected] 20 points 1 year ago

Same problem here, this is my solution:

exec-once = bash -c 'until waybar; do echo "Waybar crashed with exit code $?.  Respawning..." >&2; done'

[–] [email protected] 20 points 1 year ago (1 children)

I thought && only proceeded to the next statement if the first did not crash

[–] Shadow 6 points 1 year ago (1 children)

I guess waybar still returns 0 on segfault. Seems weird.

[–] [email protected] 7 points 1 year ago (1 children)

Nah I just noticed it crashed anyway and didn't assume it was a flaw in my methodology but rather that i ran out of waybars queue'd

[–] Shadow 5 points 1 year ago

Yeah you would need to use a ; instead of &&

[–] [email protected] 18 points 1 year ago

Just do an infinite loop

exec_once = zsh -c 'while true; do waybar; done'

[–] [email protected] 17 points 1 year ago

This is so ridiculous, I fucking love it. I just have waybar bound to a hotkey, but this solution is truly amazing

[–] [email protected] 17 points 1 year ago* (last edited 1 year ago) (1 children)

Have you tried using the latest git version of Waybar? They fixed a segfault a few days ago which might be the same one you're facing.

[–] [email protected] 8 points 1 year ago

...that does indeed look very similar, but my solution makes it so that if waybar crashes it doesn't even matter, which I quite like, even if the segfault has been fixed.

[–] [email protected] 15 points 1 year ago

What about a while loop?