Replies: 2 comments 2 replies
-
do you mean something like this? /* .config/waybar/style.css*/
#workspaces button.active{
color: @peach;
border-radius: 10px;
padding-left: 8px;
padding-right: 8px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
} |
Beta Was this translation helpful? Give feedback.
1 reply
-
I tried using
But for minor styling you might want to consider pango markup It is not that clean but it works. I wish this would help you. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there any way to style them? I'm using Hyprland and I tried to
GTK_DEBUG
the bar and it seems like the workspaces window icons are rendered together so I can't find a selector for the individual window icons. My desire is to be able to style icons for active windows differently than icons for inactive windows. The documentation only provides selectors for the workspace icons themselves but not the individual window icons.For example in here, I see that we can select by title or class. But how do I select by whether the window is focused or not? Or is this impossible natively via the waybar config?
Beta Was this translation helpful? Give feedback.
All reactions