dots/.config/picom/picom.conf

51 lines
879 B
Plaintext
Raw Normal View History

2021-08-15 17:28:10 +02:00
# Shadow
shadow = false;
# Opacity
inactive-opacity = 1.0;
frame-opacity = 1.0;
inactive-opacity-override = false;
opacity-rule = [
"100:class_g = 'kitty' && focused",
2022-12-03 16:40:28 +01:00
"83:class_g = 'kitty' && !focused",
"90:class_g = 'st-256color'"
2021-08-15 17:28:10 +02:00
];
# blur
blur:
{
2022-07-20 00:43:55 +02:00
method = "dual_kawase";
2021-10-19 00:44:22 +02:00
size = 10;
deviation = 0.8;
2021-08-15 17:28:10 +02:00
};
# Fading
fading = true;
fade-in-step = 0.07;
fade-out-step = 0.07;
fade-exclude = [
2021-10-19 00:44:22 +02:00
"class_g = 'polybar'",
2021-08-15 17:28:10 +02:00
];
# Other
backend = "glx";
mark-wmwin-focused = true;
mark-ovredir-focused = true;
detect-rounded-corners = true;
detect-client-opacity = true;
vsync = true;
dbe = false;
focus-exclude = [ "class_g = 'Cairo-clock'" ];
detect-transient = true;
detect-client-leader = true;
invert-color-include = [ ];
glx-copy-from-front = false;
# Window type settings
wintypes:
{
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; };
};