diff options
Diffstat (limited to '.config/picom/picom.conf')
-rw-r--r-- | .config/picom/picom.conf | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf new file mode 100644 index 0000000..67c459f --- /dev/null +++ b/.config/picom/picom.conf | |||
@@ -0,0 +1,94 @@ | |||
1 | # Shadow | ||
2 | shadow = true; | ||
3 | shadow-radius = 0; | ||
4 | shadow-offset-x = 5; | ||
5 | shadow-offset-y = 5; | ||
6 | log-level = "warn"; | ||
7 | # log-file = "/path/to/your/log/file"; | ||
8 | shadow-opacity = 0.8; | ||
9 | #shadow-red = 0.33; | ||
10 | #shadow-green = 0.33; | ||
11 | #shadow-blue = 0.33; | ||
12 | shadow-exclude = [ | ||
13 | "name = 'Notification'", | ||
14 | "class_g = 'Conky'", | ||
15 | "class_g ?= 'Notify-osd'", | ||
16 | "class_g = 'Cairo-clock'", | ||
17 | "_GTK_FRAME_EXTENTS@:c" | ||
18 | ]; | ||
19 | # shadow-exclude = "n:e:Notification"; | ||
20 | # shadow-exclude-reg = "x10+0+0"; | ||
21 | # xinerama-shadow-crop = true; | ||
22 | |||
23 | # Opacity | ||
24 | inactive-opacity = 0.95; | ||
25 | # active-opacity = 0.8; | ||
26 | frame-opacity = 1.0; | ||
27 | inactive-opacity-override = false; | ||
28 | inactive-dim = 0.0; | ||
29 | # inactive-dim-fixed = true; | ||
30 | #blur-background = true; | ||
31 | # blur-background-frame = true; | ||
32 | blur-kern = "3x3box"; | ||
33 | # 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"; | ||
34 | # blur-background-fixed = true; | ||
35 | blur-background-exclude = [ | ||
36 | "window_type = 'dock'", | ||
37 | "window_type = 'desktop'", | ||
38 | "_GTK_FRAME_EXTENTS@:c" | ||
39 | ]; | ||
40 | opacity-rule = [ | ||
41 | "100:_NET_WM_STATE@[0]:32a = '_NET_WM_STATE_FULLSCREEN'", | ||
42 | "100:_NET_WM_STATE@[1]:32a = '_NET_WM_STATE_FULLSCREEN'", | ||
43 | "100:_NET_WM_STATE@[2]:32a = '_NET_WM_STATE_FULLSCREEN'", | ||
44 | "100:_NET_WM_STATE@[3]:32a = '_NET_WM_STATE_FULLSCREEN'", | ||
45 | "100:_NET_WM_STATE@[4]:32a = '_NET_WM_STATE_FULLSCREEN'", | ||
46 | "0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'" | ||
47 | ]; | ||
48 | # Fading | ||
49 | fading = true; | ||
50 | # fade-delta = 30; | ||
51 | fade-in-step = 0.03; | ||
52 | fade-out-step = 0.03; | ||
53 | # no-fading-openclose = true; | ||
54 | # no-fading-destroyed-argb = true; | ||
55 | fade-exclude = [ ]; | ||
56 | |||
57 | # Other | ||
58 | backend = "glx"; | ||
59 | mark-wmwin-focused = true; | ||
60 | mark-ovredir-focused = true; | ||
61 | # use-ewmh-active-win = true; | ||
62 | detect-rounded-corners = true; | ||
63 | detect-client-opacity = true; | ||
64 | refresh-rate = 0; | ||
65 | vsync = "opengl-swc"; | ||
66 | # paint-on-overlay = true; | ||
67 | sw-opti = false; | ||
68 | # unredir-if-possible = true; | ||
69 | # unredir-if-possible-delay = 5000; | ||
70 | # unredir-if-possible-exclude = [ ]; | ||
71 | focus-exclude = [ "class_g = 'Cairo-clock'" ]; | ||
72 | detect-transient = true; | ||
73 | detect-client-leader = true; | ||
74 | invert-color-include = [ ]; | ||
75 | # resize-damage = 1; | ||
76 | |||
77 | # GLX backend | ||
78 | glx-no-stencil = true; | ||
79 | glx-copy-from-front = false; | ||
80 | glx-swap-method = "undefined"; | ||
81 | # glx-no-rebind-pixmap = true; | ||
82 | # glx-swap-method = "undefined"; | ||
83 | # glx-use-gpushader4 = true; | ||
84 | # xrender-sync = true; | ||
85 | # xrender-sync-fence = true; | ||
86 | # Window type settings | ||
87 | wintypes: | ||
88 | { | ||
89 | tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; }; | ||
90 | dock = { shadow = false; } | ||
91 | dnd = { shadow = false; } | ||
92 | popup_menu = { fade = true; shadow = true; opacity = 1; focus = true; full-shadow = true; } | ||
93 | dropdown_menu = { opacity = 1; } | ||
94 | }; | ||