Removed commit history
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
This commit is contained in:
commit
b1335a3628
199 changed files with 36930 additions and 0 deletions
53
home/.config/compton/config
Normal file
53
home/.config/compton/config
Normal file
|
@ -0,0 +1,53 @@
|
|||
backend = "glx";
|
||||
glx-no-stencil = true;
|
||||
glx-copy-from-front = false;
|
||||
glx-swap-method = 1;
|
||||
inactive-opacity-override = true;
|
||||
|
||||
# Fix tearing
|
||||
vsync = "opengl-swc";
|
||||
unredir-if-possible = false;
|
||||
paint-on-overlay = true;
|
||||
|
||||
# Shadow
|
||||
shadow = true; # Enabled client-side shadows on windows.
|
||||
no-dock-shadow = true; # Avoid drawing shadows on dock/panel windows.
|
||||
no-dnd-shadow = true; # Don't draw shadows on DND windows.
|
||||
shadow-radius = 10; # The blur radius for shadows. (default 12)
|
||||
shadow-offset-x = -15; # The left offset for shadows. (default -15)
|
||||
shadow-offset-y = -15; # The top offset for shadows. (default -15)
|
||||
shadow-opacity = 0.5;
|
||||
menu-opacity = 1;
|
||||
shadow-exclude = [
|
||||
"class_g = 'slop'",
|
||||
"n:e:Notification",
|
||||
"class_g ?= 'Xfce4-notifyd'",
|
||||
#"class_g ?= 'Xfce4-power-manager'"
|
||||
];
|
||||
|
||||
opacity-rule = [
|
||||
"50:class_g = 'Bspwm' && class_i = 'presel_feedback'",
|
||||
"99:class_g = 'slop'"
|
||||
];
|
||||
|
||||
# The shadow exclude options are helpful if you have shadows enabled. Due to the way compton draws its shadows, certain applications will have visual glitches
|
||||
# (most applications are fine, only apps that do weird things with xshapes or argb are affected).
|
||||
# This list includes all the affected apps I found in my testing. The "! name~=''" part excludes shadows on any "Unknown" windows, this prevents a visual glitch with the XFWM alt tab switcher.
|
||||
|
||||
# Fading
|
||||
fading = true; # Fade windows during opacity changes.
|
||||
fade-delta = 4; # The time between steps in a fade in milliseconds. (default 10).
|
||||
fade-in-step = 0.03; # Opacity change between steps while fading in. (default 0.028).
|
||||
fade-out-step = 0.03; # Opacity change between steps while fading out. (default 0.03).
|
||||
no-fading-openclose = false; # Fade windows in/out when opening/closing
|
||||
|
||||
detect-client-opacity = true; # This prevents opacity being ignored for some apps. For example without this enabled my xfce4-notifyd is 100% opacity no matter what.
|
||||
|
||||
#Window type settings
|
||||
wintypes:
|
||||
{
|
||||
tooltip = { fade = true; shadow = false; };
|
||||
menu = { shadow = false; };
|
||||
dropdown_menu = { shadow = false; };
|
||||
popup_menu = { shadow = false; };
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue