-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
swaybar: allow null status_command #2791
Conversation
Can you add the old default status command to the default config? |
02a6d88
to
bc9ab59
Compare
Maybe you should add a check in |
Lines 499 to 501 in 89f4ebe
|
There should be a way to change |
You can remove or comment the directive. |
I mean, there should be a way to change it via |
Sway sets a default status_command which runs date every second. This patch removes this behaviour so the user can have a NULL status bar if desired. I had to swap swaybar's event_loop_poll and wl_display_flush so that it would map the initial surface.
bc9ab59
to
5e19836
Compare
Done. Note that I found and fixed a bug in |
Thanks! |
Same as swaywm#2791 but for swaybg. Fixes swaywm#2790
I think this was actually right before. It's just that the array names |
Sway sets a default
status_command
which runsdate
every second. This patch removes this behaviour so the user can have aNULL
status bar if desired.I had to swap swaybar's
event_loop_poll
andwl_display_flush
so that it would map the initial surface.