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

179 lines
5 KiB
Text
Raw Normal View History

2020-03-19 11:03:08 +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;
# }}}
2020-04-19 11:50:17 +00:00
2020-03-19 11:03:08 +00:00
# Shadows -------------------------------- {{{
shadow = true;
2020-04-19 15:49:39 +00:00
#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 = 12;
shadow-offset-x = -10;
shadow-offset-y = -10;
shadow-opacity = 0.8;
2020-03-19 11:03:08 +00:00
# shadow-red = 0.0;
# shadow-green = 0.0;
# shadow-blue = 0.0;
shadow-exclude = [
"! name~=''",
2020-04-19 15:49:39 +00:00
#"!focused && ! class_g ?='xfce4-notifyd'",
#"name *= 'polybar'",
2020-03-19 11:03:08 +00:00
"name = 'Notification'",
"name = 'Plank'",
"name = 'Docky'",
"name = 'Kupfer'",
2020-04-18 18:27:12 +00:00
#"name = 'xfce4-notifyd'",
2020-03-19 11:03:08 +00:00
"name *= 'VLC'",
"name *= 'compton'",
"name *= 'picom'",
"class_g = 'Conky'",
"class_g = 'Kupfer'",
"class_g = 'Synapse'",
"class_g ?= 'Notify-osd'",
"class_g ?= 'Cairo-dock'",
2020-04-18 18:27:12 +00:00
#"class_g ?= 'Xfce4-notifyd'",
2020-03-19 11:03:08 +00:00
"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;
# }}}
2020-04-18 18:27:12 +00:00
# Opacity and blur ------------------------------------- {{{
2020-03-19 11:03:08 +00:00
inactive-opacity = 1;
active-opacity = 1;
frame-opacity = 1;
inactive-opacity-override = false;
# 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.
2020-04-05 13:53:22 +00:00
2020-04-19 15:49:39 +00:00
blur-background = false;
2020-05-09 13:24:23 +00:00
#blur-method = "dual_kawase";
2020-04-18 18:27:12 +00:00
#blur-method = "kernel";
2020-04-04 13:12:33 +00:00
blur-strength = 10; # max 20
blur-size = 20;
2020-03-19 11:03:08 +00:00
# Blur background of opaque windows with transparent frames as well.
2020-04-04 13:12:33 +00:00
#blur-background-frame = true;
2020-03-19 11:03:08 +00:00
# Do not let blur radius adjust based on window opacity.
blur-background-fixed = false;
blur-background-exclude = [
2020-04-19 14:40:11 +00:00
#"window_type = 'dock'",
2020-04-05 13:53:22 +00:00
"window_type = 'desktop'",
"! name~=''",
"name *= 'slop'",
"name = 'Notification'",
"name = 'xfce4-notifyd'",
"name *= 'compton'",
"name *= 'picom'",
"class_g ?= 'Xfce4-notifyd'",
"class_g ?= 'Xfce4-power-manager'",
"_GTK_FRAME_EXTENTS@:c",
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
2020-03-19 11:03:08 +00:00
];
# }}}
# Fading ---------------------------------- {{{
# Fade windows during opacity changes.
fading = true;
# 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 = 0.85;
focus = true;
};
};
xrender-sync-fence = true;
# }}}