2012-09-24 22:19:20 -04:00
|
|
|
# Shadow
|
|
|
|
shadow = true;
|
2012-09-27 21:10:34 -04:00
|
|
|
shadow-radius = 7;
|
|
|
|
shadow-offset-x = -7;
|
|
|
|
shadow-offset-y = -7;
|
|
|
|
# shadow-opacity = 0.7;
|
|
|
|
# shadow-red = 0.0;
|
|
|
|
# shadow-green = 0.0;
|
|
|
|
# shadow-blue = 0.0;
|
2014-04-19 07:41:26 -04:00
|
|
|
shadow-exclude = [
|
|
|
|
"name = 'Notification'",
|
|
|
|
"class_g = 'Conky'",
|
|
|
|
"class_g ?= 'Notify-osd'",
|
|
|
|
"class_g = 'Cairo-clock'",
|
|
|
|
"_GTK_FRAME_EXTENTS@:c"
|
|
|
|
];
|
2012-09-24 22:19:20 -04:00
|
|
|
# shadow-exclude = "n:e:Notification";
|
2013-08-26 10:00:53 -04:00
|
|
|
# shadow-exclude-reg = "x10+0+0";
|
|
|
|
# xinerama-shadow-crop = true;
|
2012-09-24 22:19:20 -04:00
|
|
|
|
|
|
|
# Opacity
|
|
|
|
inactive-opacity = 0.8;
|
2013-03-29 23:46:32 -04:00
|
|
|
# active-opacity = 0.8;
|
2012-09-24 22:19:20 -04:00
|
|
|
frame-opacity = 0.7;
|
2012-10-03 09:13:34 -04:00
|
|
|
inactive-opacity-override = false;
|
2012-12-04 23:43:34 -05:00
|
|
|
# inactive-dim = 0.2;
|
|
|
|
# inactive-dim-fixed = true;
|
2012-12-14 07:32:46 -05:00
|
|
|
# blur-background = true;
|
|
|
|
# blur-background-frame = true;
|
2016-09-04 13:24:24 -04:00
|
|
|
blur-kern = "3x3box";
|
|
|
|
# blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
|
2013-07-30 10:24:11 -04:00
|
|
|
# blur-background-fixed = true;
|
2014-04-19 07:41:26 -04:00
|
|
|
blur-background-exclude = [
|
|
|
|
"window_type = 'dock'",
|
|
|
|
"window_type = 'desktop'",
|
|
|
|
"_GTK_FRAME_EXTENTS@:c"
|
|
|
|
];
|
2013-10-01 11:20:22 -04:00
|
|
|
# opacity-rule = [ "80:class_g = 'URxvt'" ];
|
2012-09-24 22:19:20 -04:00
|
|
|
|
|
|
|
# Fading
|
|
|
|
fading = true;
|
2012-09-27 21:10:34 -04:00
|
|
|
# fade-delta = 30;
|
|
|
|
fade-in-step = 0.03;
|
|
|
|
fade-out-step = 0.03;
|
2012-09-26 09:40:48 -04:00
|
|
|
# no-fading-openclose = true;
|
2014-05-16 03:18:17 -04:00
|
|
|
# no-fading-destroyed-argb = true;
|
2013-04-21 10:30:22 -04:00
|
|
|
fade-exclude = [ ];
|
2012-09-24 22:19:20 -04:00
|
|
|
|
|
|
|
# Other
|
2016-09-04 13:24:24 -04:00
|
|
|
backend = "xrender";
|
2012-09-24 22:19:20 -04:00
|
|
|
mark-wmwin-focused = true;
|
2012-09-26 07:48:36 -04:00
|
|
|
mark-ovredir-focused = true;
|
2013-07-30 10:24:11 -04:00
|
|
|
# use-ewmh-active-win = true;
|
2012-09-30 22:34:40 -04:00
|
|
|
detect-rounded-corners = true;
|
2012-10-27 09:46:01 -04:00
|
|
|
detect-client-opacity = true;
|
Feature: #7: VSync
- Add VSync feature. 3 possible VSync methods available: "sw" (software,
not too reliable, but at least you have something to fallback to),
"drm" (using DRM_IOCTL_WAIT_VBLANK, should work only on DRI drivers),
"opengl" (using SGI_swap_control extension OpenGL, might work on more
drivers than the DRM method). "sw" and "opengl" are briefly tested,
"drm" received utterly no test (because I use the nVidia binary blob).
They are enabled with "--vsync sw" / "--vsync drm" / "--vsync opengl".
- Add --refresh-rate to let user specify a refresh rate for software
VSync, in case the automatic refresh rate detection does not work
well.
- Seemingly the automatic refresh rate detection using X RandR in
software VSync detects refresh rate incorrectly. Need further investigation.
- Fix a few bugs in fading timing.
- Add a workaround for client window detection on Fluxbox, as Fluxbox
(incorrectly?) sets the override-redirect flag upon all frame
windows.
- Software VSync adds dependency on librt (a part of glibc) for
nanosecond-level timing functions, and libXrandr for automatic refresh
rate detection; DRM VSync adds dependency on libdrm to use its drm.h,
but does not link to libdrm; OpenGL VSync adds dependency on libGL.
- Print timing information on DEBUG_REPAINT.
2012-10-07 22:20:01 -04:00
|
|
|
refresh-rate = 0;
|
2012-10-25 23:12:28 -04:00
|
|
|
vsync = "none";
|
2013-07-30 10:24:11 -04:00
|
|
|
# sw-opti = true;
|
|
|
|
# unredir-if-possible = true;
|
2013-09-24 08:41:50 -04:00
|
|
|
# unredir-if-possible-delay = 5000;
|
|
|
|
# unredir-if-possible-exclude = [ ];
|
2013-07-30 10:24:11 -04:00
|
|
|
focus-exclude = [ "class_g = 'Cairo-clock'" ];
|
2012-12-11 23:01:51 -05:00
|
|
|
detect-transient = true;
|
|
|
|
detect-client-leader = true;
|
2013-01-12 09:21:35 -05:00
|
|
|
invert-color-include = [ ];
|
2013-07-30 10:24:11 -04:00
|
|
|
# resize-damage = 1;
|
2012-09-25 09:04:10 -04:00
|
|
|
|
2013-04-21 10:30:22 -04:00
|
|
|
# GLX backend
|
|
|
|
# glx-no-stencil = true;
|
|
|
|
# glx-no-rebind-pixmap = true;
|
|
|
|
glx-swap-method = "undefined";
|
2013-07-30 10:24:11 -04:00
|
|
|
# glx-use-gpushader4 = true;
|
2018-11-08 09:53:13 -05:00
|
|
|
# xrender-sync = true;
|
|
|
|
# xrender-sync-fence = true;
|
2013-04-21 10:30:22 -04:00
|
|
|
|
2012-09-25 09:04:10 -04:00
|
|
|
# Window type settings
|
|
|
|
wintypes:
|
|
|
|
{
|
2018-11-09 14:56:05 -05:00
|
|
|
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
|
2018-12-04 08:44:16 -05:00
|
|
|
dock = { shadow = false; }
|
|
|
|
dnd = { shadow = false; }
|
|
|
|
popup_menu = { opacity = 0.8; }
|
|
|
|
dropdown_menu = { opacity = 0.8; }
|
2012-09-27 21:10:34 -04:00
|
|
|
};
|