reduced fade time, added opacity/dimming

This commit is contained in:
aj 2019-06-06 12:40:07 +01:00
parent a610d7b5e8
commit 84422ab064

View File

@ -62,7 +62,7 @@ no-dnd-shadow = true;
# Avoid drawing shadows on dock/panel windows. # Avoid drawing shadows on dock/panel windows.
no-dock-shadow = true; no-dock-shadow = true;
# The blur radius for shadows. (default 12) # The blur radius for shadows. (default 12)
shadow-radius = 5; shadow-radius = 12;
# The left offset for shadows. (default -15) # The left offset for shadows. (default -15)
shadow-offset-x = -5; shadow-offset-x = -5;
# The top offset for shadows. (default -15) # The top offset for shadows. (default -15)
@ -110,14 +110,14 @@ shadow-ignore-shaped = false;
################################# #################################
menu-opacity = 1; menu-opacity = 1;
inactive-opacity = 1; inactive-opacity = 0.8;
active-opacity = 1; active-opacity = 1;
frame-opacity = 1; frame-opacity = 1;
inactive-opacity-override = false; inactive-opacity-override = false;
alpha-step = 0.06; alpha-step = 0.06;
# Dim inactive windows. (0.0 - 1.0) # Dim inactive windows. (0.0 - 1.0)
# inactive-dim = 0.2; inactive-dim = 0.1;
# Do not let dimness adjust based on window opacity. # Do not let dimness adjust based on window opacity.
# inactive-dim-fixed = true; # inactive-dim-fixed = true;
# Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred. # Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
@ -145,11 +145,11 @@ opacity-rule = [
# Fade windows during opacity changes. # Fade windows during opacity changes.
fading = true; fading = true;
# The time between steps in a fade in milliseconds. (default 10). # The time between steps in a fade in milliseconds. (default 10).
fade-delta = 10; fade-delta = 2;
# Opacity change between steps while fading in. (default 0.028). # Opacity change between steps while fading in. (default 0.028).
fade-in-step = 0.03; fade-in-step = 0.01;
# Opacity change between steps while fading out. (default 0.03). # Opacity change between steps while fading out. (default 0.03).
fade-out-step = 0.03; fade-out-step = 0.01;
# Fade windows in/out when opening/closing # Fade windows in/out when opening/closing
no-fading-openclose = false; no-fading-openclose = false;
@ -189,7 +189,7 @@ refresh-rate = 0;
# opengl-swc: Try to VSync with SGI_swap_control OpenGL extension. Only work on some drivers. Works only with GLX backend. Known to be most effective on many drivers. Does not actually control paint timing, only buffer swap is affected, so it doesnt have the effect of --sw-opti unlike other methods. Experimental. # opengl-swc: Try to VSync with SGI_swap_control OpenGL extension. Only work on some drivers. Works only with GLX backend. Known to be most effective on many drivers. Does not actually control paint timing, only buffer swap is affected, so it doesnt have the effect of --sw-opti unlike other methods. Experimental.
# opengl-mswc: Try to VSync with MESA_swap_control OpenGL extension. Basically the same as opengl-swc above, except the extension we use. # opengl-mswc: Try to VSync with MESA_swap_control OpenGL extension. Basically the same as opengl-swc above, except the extension we use.
# (Note some VSync methods may not be enabled at compile time.) # (Note some VSync methods may not be enabled at compile time.)
vsync = "opengl"; vsync = "opengl-swc";
# Enable DBE painting mode, intended to use with VSync to (hopefully) eliminate tearing. # Enable DBE painting mode, intended to use with VSync to (hopefully) eliminate tearing.
# Reported to have no effect, though. # Reported to have no effect, though.