sdhand / picom

A compositor for X11, active fork.
Other
136 stars 10 forks source link

Add rounded-corners-exclude configuration option #3

Closed elenapan closed 4 years ago

elenapan commented 4 years ago

Allows the user to selectively disable rounded corners.

Example configuration for preventing Polybar and all windows of type dock from being rounded.

rounded-corners-exclude = [
    "class_g = 'polybar'",
    "window_type = 'dock'"
];
lwilletts commented 4 years ago
rounded-corners-exclude = [
    "window_type = 'menu'",
    "window_type = 'tooltip'",
    "window_type = 'popup_menu'",
    "window_type = 'dropdown_menu'"
];

For those who don't want compton to affect menus.