feat config and fonts
This commit is contained in:
parent
31d829eaa3
commit
756b5af977
10 changed files with 284 additions and 0 deletions
64
.config/compton.conf
Normal file
64
.config/compton.conf
Normal file
|
@ -0,0 +1,64 @@
|
|||
#corner-radius = 15.0;
|
||||
|
||||
## Shadow
|
||||
shadow = true;
|
||||
no-dnd-shadow = true;
|
||||
no-dock-shadow = false;
|
||||
clear-shadow = true;
|
||||
shadow-radius = 12;
|
||||
shadow-offset-x = -17;
|
||||
shadow-offset-y = -7;
|
||||
shadow-opacity = 0.5;
|
||||
|
||||
## fading
|
||||
fading = true;
|
||||
fade-delta = 0.25;
|
||||
fade-in-step = 0.02;
|
||||
fade-out-step = 0.02;
|
||||
fade-exclude = [
|
||||
];
|
||||
|
||||
## opacity
|
||||
active-opacity = 0.8;
|
||||
frame-opacity = 0.5;
|
||||
opacity-rule = [
|
||||
"80:class_g = 'Thunar'",
|
||||
"80:class_g = 'Code'",
|
||||
"50:class_g = 'discord'",
|
||||
"80:class_g = 'jetbrains-studio'"
|
||||
];
|
||||
|
||||
## other
|
||||
backend = "glx";
|
||||
mark-wmwin-focused = true;
|
||||
mark-ovredir-focused = true;
|
||||
detect-rounded-corners = true;
|
||||
detect-client-opacity = true;
|
||||
refresh-rate = 0;
|
||||
vsync = "none";
|
||||
dbe = false;
|
||||
paint-on-overlay = true;
|
||||
focus-exclude = [ "class_g = 'Cairo-clock'" ,
|
||||
"class_g = 'CoverGloobus'",
|
||||
"class_g = 'Tilda'",
|
||||
"class_g = 'google-chrome'",
|
||||
"class_g = 'Firefox-esr'"
|
||||
];
|
||||
detect-transient = true;
|
||||
detect-client-leader = true;
|
||||
invert-color-include = [ ];
|
||||
glx-copy-from-front = false;
|
||||
glx-swap-method = "undefined";
|
||||
wintypes:
|
||||
{
|
||||
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; };
|
||||
};
|
||||
|
||||
## blur
|
||||
blur-background = true;
|
||||
blur-background-frame = false;
|
||||
blur-background-fixed = false;
|
||||
blur-kern = "3x3box";
|
||||
blur-method = "kawase";
|
||||
blur-strength = 10;
|
||||
blur-background-exclude = [ "class_g = 'slop'", "class_g = 'Peek'", "window_type = 'desktop'" ];
|
Loading…
Add table
Add a link
Reference in a new issue