We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This would allow to completely hide the systray (via css) if it is empty.
I have not been able to do this otherwise, also not via reveal.
.systray_empty {padding: 0}
No response
The text was updated successfully, but these errors were encountered:
I think that instead of the class it is worth adding the visible-empty property, I wanted to do this but could not install the dependencies с:
visible-empty
error: could not compile `winnow` (lib) due to 3149 previous errors
Sorry, something went wrong.
I implemented it in this PR
:visible-empty
systray
#!/bin/bash count=0 dbus-monitor --session "interface='org.kde.StatusNotifierWatcher'" | while read -r signal; do if [[ $signal == *"StatusNotifierItemRegistered"* ]]; then count=$(($count + 1)) elif [[ $signal == *"StatusNotifierItemUnregistered"* ]] then count=$(($count - 1)) fi echo $count done
(deflisten systray-items-count :initial 0 "path-to-script") (systray :visible "${systray-items-count > 0}")
No branches or pull requests
Description of the requested feature
This would allow to completely hide the systray (via css) if it is empty.
I have not been able to do this otherwise, also not via reveal.
Proposed configuration syntax
.systray_empty {padding: 0}
Additional context
No response
The text was updated successfully, but these errors were encountered: