commit 78af3e5e54ed5ae7e7e9d2b71484e95c9dfa34ff parent b5c32dc68691c33fcc89de5b5c7e9f8cbcb1f1be Author: Jake Bauer <jbauer@paritybit.ca> Date: Fri, 10 Mar 2023 16:53:19 -0500 Simplify picom.conf Diffstat:
M | .config/picom/picom.conf | | | 53 | +---------------------------------------------------- |
1 file changed, 1 insertion(+), 52 deletions(-)
diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf @@ -1,57 +1,6 @@ -#+----------------------------------------+ -#| Backend | -#+----------------------------------------+ -backend="glx"; # (xrender|glx|xr_glx_hybrid) - +backend="glx"; glx-no-stencil=true; glx-no-rebind-pixmap=true; use-damage=true; - -#+----------------------------------------+ -#| Shadows | -#+----------------------------------------+ -shadow=true; -shadow-radius=12; -shadow-offset-x=-15; -shadow-offset-y=-8; -shadow-opacity=0.85; - -shadow-red=0.1 -shadow-green=0.1 -shadow-blue=0.1 - -shadow-ignore-shaped=true; - -#+----------------------------------------+ -#| Opacity, Blur, and Fading | -#+----------------------------------------+ -inactive-dim=0.2 -opacity-rule = [ - "85:class_g = 'XTerm'" -]; - -#+----------------------------------------+ -#| Other Options | -#+----------------------------------------+ -detect-rounded-corners=true; -detect-client-opacity=true; -detect-transient=true; -detect-client-leader=true; vsync=true; -# Unredirect all windows if a full-screen opaque window is detected, to -# maximize performance for full-screen windows, like games. unredir-if-possible=true; - -#+----------------------------------------+ -#| Window Type Settings | -#+----------------------------------------+ -wintypes: -{ - tooltip = - { - fade=false; - shadow=false; - opacity=1; - focus=true; - }; -};