| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- # vim: foldmethod=marker
- backend = "glx";
- vsync = false;
- use-damage = true
- unredir-if-possible = true;
- # glx-no-stencil = true;
- # glx-no-rebind-pixmap = true;
- # Fading {{{
- fading = true;
- fade-in-step = 0.09;
- fade-out-step = 0.08;
- fade-delta = 10;
- no-fading-openclose = false;
- # }}}
- # Wintypes {{{
- wintypes:
- {
- tooltip = { shadow = false; };
- };
- # }}}
- # Shadows {{{
- shadow = true;
- shadow-radius = 15;
- shadow-offset-x = -15;
- shadow-offset-y = -15;
- shadow-opacity = 0.75;
- shadow-exclude = [
- "bounding_shaped && !rounded_corners",
- "window_type = 'desktop'",
- "window_type = 'utility'",
- "window_type = 'splash'",
- "window_type = 'tooltip'",
- "window_type *= 'menu'",
- "window_type != 'dock' && BSPWM_TILED@:c = 1",
- "class_g *?= 'activate-linux'",
- ]
- # }}}
- # Blur {{{
- blur:
- {
- method = "dual_kawase";
- strength = 5;
- }
- blur-background = true;
- blur-background-frame = true;
- blur-background-fixed = true;
- blur-background-exclude = [
- "window_type = 'desktop'",
- "window_type *= 'menu'",
- "window_type = 'utility'",
- "window_type = 'tooltip'",
- "window_type = 'splash'",
- "class_g *?= 'screenkey'",
- "class_g *?= 'GLava'",
- "class_g *?= 'kdeconnectd'",
- "class_g *?= 'kdeconnect.daemon'",
- "class_g *?= 'activate-linux'",
- "_GTK_FRAME_EXTENTS@:c"
- ];
- # }}}
- # Opacity {{{
- frame-opacity = 0.8;
- # inactive-dim = 0.8;
- opacity-rule = [
- "95:class_g *?= 'chatterino'",
- "95:class_g *?= 'dunst'"
- ];
- # }}}
- # Rounded corners {{{
- corner-radius = 10.0;
- rounded-corners-exclude = [
- "window_type = 'dock'",
- "window_type = 'desktop'",
- "window_type = 'dropdown_menu'",
- "window_type = 'popup_menu'",
- "window_type = 'utility'",
- "window_type = 'tooltip'",
- "window_type = 'splash'",
- "class_g *?= 'dunst'",
- "BSPWM_TILED@:c = 1",
- "_NET_WM_STATE@[*]:32a = '_NET_WM_STATE_FULLSCREEN'",
- ];
- # }}}
|