a picom config that I dont use
This commit is contained in:
parent
38511f0b0b
commit
d1694224b3
1 changed files with 63 additions and 0 deletions
63
dot.config/picomrc
Normal file
63
dot.config/picomrc
Normal file
|
@ -0,0 +1,63 @@
|
|||
# shadows?
|
||||
shadow = false;
|
||||
|
||||
# Opacity
|
||||
# menu-opacity = 0.8;
|
||||
inactive-opacity = 0.8;
|
||||
# active-opacity = 0.8;
|
||||
frame-opacity = 0.7;
|
||||
inactive-opacity-override = false;
|
||||
inactive-dim = 0.2;
|
||||
# inactive-dim-fixed = true;
|
||||
blur-background = true;
|
||||
# blur-background-frame = true;
|
||||
blur-kern = "7x7box"
|
||||
# blur-background-fixed = true;
|
||||
blur-background-exclude = [
|
||||
#"window_type = 'dock'",
|
||||
"window_type = 'desktop'",
|
||||
"_GTK_FRAME_EXTENTS@:c"
|
||||
];
|
||||
opacity-rule = [ "90:class_g = 'st-256color'", "80:name = 'rofi'" ];
|
||||
|
||||
# Fading
|
||||
fading = true;
|
||||
fade-delta = 5;
|
||||
fade-in-step = 0.03;
|
||||
fade-out-step = 0.03;
|
||||
# no-fading-openclose = true;
|
||||
# no-fading-destroyed-argb = true;
|
||||
fade-exclude = [ ];
|
||||
|
||||
# Other
|
||||
backend = "xrender"
|
||||
mark-wmwin-focused = true;
|
||||
mark-ovredir-focused = true;
|
||||
# use-ewmh-active-win = true;
|
||||
detect-rounded-corners = true;
|
||||
detect-client-opacity = true;
|
||||
refresh-rate = 60;
|
||||
vsync = false;
|
||||
dbe = false;
|
||||
# sw-opti = true;
|
||||
# unredir-if-possible = true;
|
||||
# unredir-if-possible-delay = 5000;
|
||||
# unredir-if-possible-exclude = [ ];
|
||||
focus-exclude = [ "class_g = 'Cairo-clock'" ];
|
||||
detect-transient = true;
|
||||
detect-client-leader = true;
|
||||
invert-color-include = [ ];
|
||||
# resize-damage = 1;
|
||||
|
||||
# GLX backend
|
||||
glx-no-stencil = true;
|
||||
glx-copy-from-front = false;
|
||||
glx-use-copysubbuffermesa = true;
|
||||
# glx-no-rebind-pixmap = true;
|
||||
use-damage = true;
|
||||
|
||||
# Window type settings
|
||||
wintypes:
|
||||
{
|
||||
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; };
|
||||
};
|
Loading…
Reference in a new issue