-
-
Notifications
You must be signed in to change notification settings - Fork 44
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
[BUG] nwg-panel requires restart to show panel on all outputs #344
Comments
Panel instances are being created on startup. There's no way to do what you want. |
Very well, it isn't hard to script either. #!/bin/bash
udevadm monitor --udev --subsystem-match=drm | while read -r line; do
if echo "$line" | grep -q "change"; then
nwg-panel &
fi
done Edit: run nwg-panel directly to let it restart automatically |
To restart nwg-panel, you just need to run the command. It will kill the currently running instance. |
Good to know, thank you |
thank you! that helped with wayland issues I had using eww. |
Describe the bug
When a panel is set to "all outputs" and started, and a new monitor is then connected, nwg-panel has to be restarted before the panel shows on the new monitor.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
nwg-panel updates to show panel on all outputs immediately upon a new connection.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: