dotfiles/stow_home/picom/.config/picom/bak/picom.conf.bak

64 lines
1.3 KiB
Plaintext
Executable File

backend = "glx";
glx-no-stencil = true;
vsync = true;
unredir-if-possible = true;
# Shadow
shadow = true; # Enabled client-side shadows on windows.
shadow-radius = 7; # The blur radius for shadows. (default 12)
shadow-offset-x = -7; # The left offset for shadows. (default -15)
shadow-offset-y = -7; # The top offset for shadows. (default -15)
shadow-exclude = [
"n:e:Notification",
"n:e:Docky",
"g:e:Synapse",
"g:e:Conky",
"n:w:*Chromium*",
"n:w:*dockbarx*",
"n:w:*panel*"
"n:w:*maim*"
"class_g ?= 'spectrwm'",
"class_g ?= 'Cairo-dock'",
"class_g ?= 'Xfce4-notifyd'",
"class_g ?= 'Xfce4-power-manager'",
"class_g ?= 'Notify-osd'",
"class_g ?= 'Firefox'",
"_GTK_FRAME_EXTENTS@:c"
];
blur-background = true;
blur-background-frame = true;
blur-kern = "3x3box"
blur-background-fixed = true;
blur-background-exclude = [
"window_type = 'dock'",
"window_type = 'desktop'"
];
# Opacity
detect-client-opacity = true;
menu-opacity = 1.0;
active-opacity = 1.0;
inactive-opacity = 0.8;
inactive-opacity-override = false;
opacity-rule = [
"90:class_g ?= 'pcmanfm'" ,
"99:class_g ?= 'Firefox'" ,
"99:class_g ?= 'Xfce4-terminal'" ,
"99:class_g ?= 'konsole'" ,
"100:class_g ?= 'rofi'"
]
# Window type settings
wintypes:
{
dock = { shadow = false; };
dnd = { shadow = false; };
tooltip = { shadow = false; };
};