mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
2165c42d27
- Add window color inversion (--invert-color-include). It means 2-3 times extra painting, so performance issues are likely to appear. I hope I could find a faster way to invert colors. - Rename some functions. - Fix update of some window properties after window type/data change. Hopefully this will be helpful for #73. - Split win_build_picture() from win_blur_background(). - Correct memory leak of ps->focus_blacklist during reinitialization. - Add win_upd_t and win_upd_run(), to reduce duplicate window property updates. But is unused right now. - Limited tests are done overall. Bugs to be expected.
57 lines
1.2 KiB
Text
57 lines
1.2 KiB
Text
# Shadow
|
|
shadow = true;
|
|
no-dnd-shadow = true;
|
|
no-dock-shadow = true;
|
|
clear-shadow = true;
|
|
shadow-radius = 7;
|
|
shadow-offset-x = -7;
|
|
shadow-offset-y = -7;
|
|
# shadow-opacity = 0.7;
|
|
# shadow-red = 0.0;
|
|
# shadow-green = 0.0;
|
|
# shadow-blue = 0.0;
|
|
shadow-exclude = [ "n:e:Notification", "g:e:Conky" ];
|
|
# shadow-exclude = "n:e:Notification";
|
|
shadow-ignore-shaped = false;
|
|
|
|
# Opacity
|
|
menu-opacity = 0.8;
|
|
inactive-opacity = 0.8;
|
|
frame-opacity = 0.7;
|
|
inactive-opacity-override = false;
|
|
alpha-step = 0.06;
|
|
# inactive-dim = 0.2;
|
|
# inactive-dim-fixed = true;
|
|
# blur-background = true;
|
|
# blur-background-frame = true;
|
|
blur-background-fixed = false;
|
|
|
|
# Fading
|
|
fading = true;
|
|
# fade-delta = 30;
|
|
fade-in-step = 0.03;
|
|
fade-out-step = 0.03;
|
|
# no-fading-openclose = true;
|
|
|
|
# Other
|
|
mark-wmwin-focused = true;
|
|
mark-ovredir-focused = true;
|
|
use-ewmh-active-win = false;
|
|
detect-rounded-corners = true;
|
|
detect-client-opacity = true;
|
|
refresh-rate = 0;
|
|
vsync = "none";
|
|
dbe = false;
|
|
paint-on-overlay = false;
|
|
sw-opti = false;
|
|
unredir-if-possible = false;
|
|
focus-exclude = [ ];
|
|
detect-transient = true;
|
|
detect-client-leader = true;
|
|
invert-color-include = [ ];
|
|
|
|
# Window type settings
|
|
wintypes:
|
|
{
|
|
tooltip = { fade = true; shadow = false; opacity = 0.75; focus = true; };
|
|
};
|