diff options
| -rw-r--r-- | picom.sample.conf | 49 |
1 files changed, 10 insertions, 39 deletions
diff --git a/picom.sample.conf b/picom.sample.conf index 797c867..b2c07e3 100644 --- a/picom.sample.conf +++ b/picom.sample.conf @@ -6,24 +6,20 @@ # Enabled client-side shadows on windows. Note desktop windows # (windows with '_NET_WM_WINDOW_TYPE_DESKTOP') never get shadow, # unless explicitly requested using the wintypes option. -# -# shadow = false -shadow = true; +shadow = false; # The blur radius for shadows, in pixels. (defaults to 12) # shadow-radius = 12 -shadow-radius = 7; +shadow-radius = 12; # The opacity of shadows. (0.0 - 1.0, defaults to 0.75) -# shadow-opacity = .75 +# shadow-opacity = 0.75 # The left offset for shadows, in pixels. (defaults to -15) -# shadow-offset-x = -15 -shadow-offset-x = -7; +shadow-offset-x = -15; # The top offset for shadows, in pixels. (defaults to -15) -# shadow-offset-y = -15 -shadow-offset-y = -7; +shadow-offset-y = -15; # Red color value of shadow (0.0 - 1.0, defaults to 0). # shadow-red = 0 @@ -38,33 +34,10 @@ shadow-offset-y = -7; # shadow-color = "#000000" # Specify a list of conditions of windows that should have no shadow. -# -# examples: -# shadow-exclude = "n:e:Notification"; -# -# shadow-exclude = [] shadow-exclude = [ - "name = 'Notification'", - "class_g = 'Conky'", - "class_g ?= 'Notify-osd'", - "class_g = 'Cairo-clock'", - "_GTK_FRAME_EXTENTS@:c" + "class_g = 'foo'", ]; -# Specify a list of conditions of windows that should have no shadow painted over, such as a dock window. -# clip-shadow-above = [] - -# Specify a X geometry that describes the region in which shadow should not -# be painted in, such as a dock window region. Use -# shadow-exclude-reg = "x10+0+0" -# for example, if the 10 pixels on the bottom of the screen should not have shadows painted on. -# -# shadow-exclude-reg = "" - -# Crop shadow of a window fully on a particular Xinerama screen to the screen. -# xinerama-shadow-crop = false - - ################################# # Fading # ################################# @@ -89,6 +62,10 @@ fade-out-step = 0.03; # Specify a list of conditions of windows that should not be faded. # fade-exclude = [] +# +# Advanced Options +# + # Do not fade on window open/close. # no-fading-openclose = false @@ -127,12 +104,6 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ]; # inactive-dim-fixed = 1.0 # Specify a list of opacity rules, in the format `PERCENT:PATTERN`, -# like `50:name *= "Firefox"`. picom-trans is recommended over this. -# Note we don't make any guarantee about possible conflicts with other -# programs that set '_NET_WM_WINDOW_OPACITY' on frame or client windows. -# example: -# opacity-rule = [ "80:class_g = 'URxvt'" ]; -# # opacity-rule = [] |