Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- backend = "glx";
- vsync = "opengl-swc";
- glx-copy-from-front = true;
- glx-swap-method = 2;
- # Fading
- fading = true; # Fade windows during opacity changes.
- fade-delta = 30; # The time between steps in a fade in milliseconds. (default 10).
- fade-in-step = 0.05; # Opacity change between steps while fading in. (default 0.028).
- fade-out-step = 0.05; # Opacity change between steps while fading out. (default 0.03).
- #################################
- #
- # Shadows
- #
- #################################
- # Enabled client-side shadows on windows.
- shadow = true;
- # Don't draw shadows on DND windows.
- no-dnd-shadow = true;
- # Avoid drawing shadows on dock/panel windows.
- no-dock-shadow = true;
- # Zero the part of the shadow's mask behind the window. Fix some weirdness with ARGB windows.
- clear-shadow = true;
- # The blur radius for shadows. (default 12)
- shadow-radius = 12;
- # The left offset for shadows. (default -15)
- shadow-offset-x = -5;
- # The top offset for shadows. (default -15)
- shadow-offset-y = -5;
- # The translucency for shadows. (default .75)
- shadow-opacity = 0.5;
- # Set if you want different colour shadows
- # shadow-red = 0.0;
- # shadow-green = 0.0;
- # shadow-blue = 0.0;
- # 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.
- shadow-exclude = [
- "! name~=''",
- "name = 'Notification'",
- "name = 'Plank'",
- "name = 'Docky'",
- "name = 'Kupfer'",
- "name = 'xfce4-notifyd'",
- "name *= 'VLC'",
- "name *= 'compton'",
- "name *= 'Chromium'",
- "name *= 'Chrome'",
- "name *= 'Firefox'",
- "class_g = 'Conky'",
- "class_g = 'Kupfer'",
- "class_g = 'Synapse'",
- "class_g ?= 'Notify-osd'",
- "class_g ?= 'Cairo-dock'",
- "class_g ?= 'Xfce4-notifyd'",
- "class_g ?= 'Xfce4-power-manager'"
- ];
- # Avoid drawing shadow on all shaped windows (see also: --detect-rounded-corners)
- shadow-ignore-shaped = false;
- #################################
- #
- # Opacity
- #
- #################################
- menu-opacity = 1;
- inactive-opacity = 1;
- active-opacity = 1;
- frame-opacity = 1;
- inactive-opacity-override = false;
- alpha-step = 0.06;
- # Dim inactive windows. (0.0 - 1.0)
- inactive-dim = 0.2;
- # Do not let dimness adjust based on window opacity.
- inactive-dim-fixed = true;
- # Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
- # blur-background = true;
- # Blur background of opaque windows with transparent frames as well.
- #blur-background-frame = true;
- # Do not let blur radius adjust based on window opacity.
- #blur-background-fixed = false;
Advertisement
Add Comment
Please, Sign In to add comment