Alexays / Waybar

Highly customizable Wayland bar for Sway and Wlroots based compositors. :v: :tada:
MIT License
6.78k stars 710 forks source link

border radius options? #3687

Closed Set2Minecraft closed 1 month ago

Set2Minecraft commented 1 month ago

Is there a way to control individual border radius corners or sides in style.css?

something like: border-radius-right: 0px

including top, bottom, left and the corners? Am I missing something obvious?

marcorampin commented 1 month ago

You can either specify border-top-left-radius: 0px or write the four different values (from top-left in clockwise direction) border-radius: 0px 5px 10px 15px.

For more options (you can also test it directly): https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius

Set2Minecraft commented 1 month ago

Ah, Thanks!