Add picom config

This commit is contained in:
buffet 2022-05-02 08:26:50 +00:00
parent 39eabf3da4
commit 0e7104ee0b

63
picom/.config/picom.conf Normal file
View file

@ -0,0 +1,63 @@
# Dim
inactive-dim = 0.03;
inactive-dim-fixed = true;
# Fading
fading = true;
fade-delta = 1.8;
fade-in-step = 0.03;
fade-out-step = 0.03;
# Other
backend = "glx";
mark-wmwin-focused = true;
mark-ovredir-focused = true;
# use-ewmh-active-win = true;
detect-rounded-corners = true;
detect-client-opacity = true;
refresh-rate = 0;
vsync = true;
# sw-opti = true;
unredir-if-possible = false;
# unredir-if-possible-delay = 5000;
# unredir-if-possible-exclude = [ ];
# focus-exclude = [ "class_g = 'Cairo-clock'" ];
focus-exclude = [
"class_g = 'Cairo-clock'",
"class_g ?= 'rofi'",
"class_g ?= 'slop'",
"class_g ?= 'Steam'"
];
detect-transient = true;
detect-client-leader = true;
invert-color-include = [ ];
# resize-damage = 1;
# GLX backend
glx-no-stencil = true;
# glx-no-rebind-pixmap = true;
# xrender-sync-fence = true;
use-damage = true;
# Window type settings
wintypes:
{
tooltip = { fade = true; shadow = false; focus = false; };
normal = { shadow = false; };
dock = { shadow = false; };
dnd = { shadow = false; };
popup_menu = { shadow = true; focus = false; opacity = 0.90; };
dropdown_menu = { shadow = false; focus = false; };
above = { shadow = true; };
splash = { shadow = false; };
utility = { focus = false; shadow = false; };
notification = { shadow = false; };
desktop = { shadow = true };
menu = { focus = false };
dialog = { shadow = true; };
};