dots-of-war/files/.config/picom.conf

180 lines
5.1 KiB
Text
Raw Normal View History

2020-06-21 10:41:26 +00:00
# Thank you code_nomad: http://9m.no/ꪯ鵞
# and Arch Wiki contributors: https://wiki.archlinux.org/index.php/Compton
# Backend --------------------- {{{
# Backend to use: "xrender" or "glx".
# GLX backend is typically much faster but depends on a sane driver.
backend = "glx";
glx-no-stencil = true;
glx-copy-from-front = false;
# }}}
# Shadows -------------------------------- {{{
shadow = true;
#shadow-radius = 20;
#shadow-offset-x = -20;
#shadow-offset-y = -20;
#hadow-radius = 3;
#shadow-offset-x = 3;
#shadow-offset-y = 3;
#shadow-opacity = 0.6;
shadow-radius = 18;
2020-08-18 13:20:00 +00:00
shadow-offset-x = -19;
shadow-offset-y = -15;
2020-06-21 10:41:26 +00:00
shadow-opacity = 1.0;
# shadow-red = 0.0;
# shadow-green = 0.0;
# shadow-blue = 0.0;
shadow-exclude = [
"! name~=''",
#"!focused && ! class_g ?='xfce4-notifyd'",
#"name *= 'polybar'",
"name = 'Notification'",
"name = 'Plank'",
"name = 'Docky'",
"name = 'Kupfer'",
#"name = 'xfce4-notifyd'",
"name *= 'VLC'",
"name *= 'compton'",
"name *= 'picom'",
"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'",
"_GTK_FRAME_EXTENTS@:c",
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
];
# Avoid drawing shadow on all shaped windows (see also: --detect-rounded-corners)
shadow-ignore-shaped = false;
# }}}
# Opacity and blur ------------------------------------- {{{
inactive-opacity = 1;
active-opacity = 1;
frame-opacity = 1;
#inactive-opacity-override = true;
# Dim inactive windows. (0.0 - 1.0)
inactive-dim = 1;
# 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 = false;
#blur-method = "dual_kawase";
#blur-method = "kernel";
blur-strength = 20; # max 20
blur-size = 20;
# Blur background of opaque windows with transparent frames as well.
blur-background-frame = false;
# Do not let blur radius adjust based on window opacity.
blur-background-fixed = false;
blur-background-exclude = [
#"window_type = 'dock'",
"window_type = 'desktop'",
"! name~=''",
"name *= 'slop'",
"name = 'Notification'",
"name = 'xfce4-notifyd'",
"name *= 'compton'",
"name *= 'picom'",
2020-08-18 13:20:00 +00:00
"class_g *= 'boox'",
2020-06-21 10:41:26 +00:00
"class_g ?= 'Xfce4-notifyd'",
"class_g ?= 'Xfce4-power-manager'",
"_GTK_FRAME_EXTENTS@:c",
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
];
# }}}
# Fading ---------------------------------- {{{
# Fade windows during opacity changes.
fading = false;
# The time between steps in a fade in milliseconds. (default 10).
fade-delta = 4;
# Opacity change between steps while fading in. (default 0.028).
fade-in-step = 0.03;
# Opacity change between steps while fading out. (default 0.03).
fade-out-step = 0.03;
# Fade windows in/out when opening/closing
no-fading-openclose = false;
# Specify a list of conditions of windows that should not be faded.
fade-exclude = [ ];
# }}}
# Other ---------------------------------- {{{
# Try to detect WM windows and mark them as active.
mark-wmwin-focused = true;
# Mark all non-WM but override-redirect windows active (e.g. menus).
mark-ovredir-focused = true;
# Use EWMH _NET_WM_ACTIVE_WINDOW to determine which window is focused instead of using FocusIn/Out events.
# Usually more reliable but depends on a EWMH-compliant WM.
use-ewmh-active-win = true;
# Detect rounded corners and treat them as rectangular when --shadow-ignore-shaped is on.
detect-rounded-corners = true;
# Detect _NET_WM_OPACITY on client windows, useful for window managers not passing _NET_WM_OPACITY of client windows to frame windows.
# This prevents opacity being ignored for some apps.
# For example without this enabled my xfce4-notifyd is 100% opacity no matter what.
detect-client-opacity = true;
vsync = true;
# Enable DBE painting mode, intended to use with VSync to (hopefully) eliminate tearing. Reported to have no effect, though.
dbe = false;
# Unredirect all windows if a full-screen opaque window is detected, to maximize performance for full-screen windows, like games.
# Known to cause flickering when redirecting/unredirecting windows.
unredir-if-possible = false;
# Specify a list of conditions of windows that should always be considered focused.
focus-exclude = [ ];
# Use WM_TRANSIENT_FOR to group windows, and consider windows in the same group focused at the same time.
detect-transient = true;
# Use WM_CLIENT_LEADER to group windows, and consider windows in the same group focused at the same time.
# WM_TRANSIENT_FOR has higher priority if --detect-transient is enabled, too.
detect-client-leader = true;
# }}}
# Window type settings ---------------------------------- {{{
wintypes:
{
menu = {
opacity = 1;
shadow = true;
fade = true;
full-shadow = true;
};
dropdown_menu = {
opacity = 1;
shadow = true;
fade = true;
full-shadow = true;
};
tooltip = {
fade = true;
shadow = true;
opacity = 1.00;
focus = true;
};
};
xrender-sync-fence = true;
# }}}