Waybar icon indicating copy to clipboard operation
Waybar copied to clipboard

Window drop shadow

Open Iss-in opened this issue 2 years ago • 1 comments

feature request : allow waybar window to have a drop shadow of its own.

Given that sway and wlroots based compositors arent providing shadow rendering by themselves, instead of making apps do it themselves, will it be possible to have this feature ?

Iss-in avatar Oct 21 '21 05:10 Iss-in

Here is how you can achieve this with css:

window#waybar {
    background-color: transparent;
}

window#waybar > box {
    border-radius: 8px;
    margin: 4px 8px 8px 8px;
    background-color: rgba(32, 32, 32, 0.75);
    box-shadow: 4px 4px 2px 1px #101010;
}

eneshecan avatar Aug 22 '22 10:08 eneshecan