diff options
Diffstat (limited to '.config/picom/picom.conf##h.maus')
-rw-r--r-- | .config/picom/picom.conf##h.maus | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/.config/picom/picom.conf##h.maus b/.config/picom/picom.conf##h.maus new file mode 100644 index 0000000..93022a9 --- /dev/null +++ b/.config/picom/picom.conf##h.maus | |||
@@ -0,0 +1,91 @@ | |||
1 | # log | ||
2 | log-level = "warn"; | ||
3 | log-file = "/home/yigit/.local/share/picom/picom.log"; | ||
4 | |||
5 | # shadow | ||
6 | shadow = false; | ||
7 | shadow-radius = 0; | ||
8 | shadow-offset-x = 5; | ||
9 | shadow-offset-y = 5; | ||
10 | shadow-opacity = 0.8; | ||
11 | |||
12 | corner-radius = 25.0; | ||
13 | rounded-corners-exclude = [ | ||
14 | #"window_type = 'normal'", | ||
15 | "class_g = 'URxvt'", | ||
16 | "class_g = 'XTerm'", | ||
17 | "class_g = 'Polybar'", | ||
18 | "class_g = 'code-oss'", | ||
19 | #"class_g = 'TelegramDesktop'", | ||
20 | "class_g = 'firefox'", | ||
21 | "class_g = 'Thunderbird'", | ||
22 | ]; | ||
23 | |||
24 | blur: | ||
25 | { | ||
26 | method = "kawase"; | ||
27 | strength = 7; | ||
28 | background = false; | ||
29 | background-frame = false; | ||
30 | background-fixed = false; | ||
31 | } | ||
32 | |||
33 | shadow-exclude = [ | ||
34 | "name = 'Notification'", | ||
35 | "class_g = 'Conky'", | ||
36 | "class_g = 'Dunst'", | ||
37 | "class_g = 'Rofi'", | ||
38 | "_GTK_FRAME_EXTENTS@:c" | ||
39 | ]; | ||
40 | |||
41 | # opacity | ||
42 | inactive-opacity = 1; | ||
43 | # active-opacity = 0.8; | ||
44 | frame-opacity = 1.0; | ||
45 | inactive-opacity-override = false; | ||
46 | inactive-dim = 0.0; | ||
47 | |||
48 | opacity-rule = [ | ||
49 | "100:_NET_WM_STATE@[0]:32a = '_NET_WM_STATE_FULLSCREEN'", | ||
50 | "100:_NET_WM_STATE@[1]:32a = '_NET_WM_STATE_FULLSCREEN'", | ||
51 | "100:_NET_WM_STATE@[2]:32a = '_NET_WM_STATE_FULLSCREEN'", | ||
52 | "100:_NET_WM_STATE@[3]:32a = '_NET_WM_STATE_FULLSCREEN'", | ||
53 | "100:_NET_WM_STATE@[4]:32a = '_NET_WM_STATE_FULLSCREEN'", | ||
54 | "0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'" | ||
55 | ]; | ||
56 | |||
57 | # fading | ||
58 | fading = true; | ||
59 | fade-in-step = 0.03; | ||
60 | fade-out-step = 0.03; | ||
61 | fade-exclude = [ ]; | ||
62 | |||
63 | # other | ||
64 | backend = "glx"; | ||
65 | mark-wmwin-focused = true; | ||
66 | mark-ovredir-focused = true; | ||
67 | detect-rounded-corners = true; | ||
68 | detect-client-opacity = true; | ||
69 | refresh-rate = 0; | ||
70 | vsync = true; | ||
71 | sw-opti = false; | ||
72 | unredir-if-possible = false; | ||
73 | detect-transient = true; | ||
74 | detect-client-leader = true; | ||
75 | invert-color-include = [ ]; | ||
76 | |||
77 | # glx backend | ||
78 | glx-no-stencil = true; | ||
79 | glx-copy-from-front = false; | ||
80 | use-damage = true | ||
81 | xrender-sync-fence = true; | ||
82 | |||
83 | # window type settings | ||
84 | wintypes: | ||
85 | { | ||
86 | tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; }; | ||
87 | dock = { shadow = false; } | ||
88 | dnd = { shadow = false; } | ||
89 | popup_menu = { fade = true; shadow = true; opacity = 1; focus = true; full-shadow = true; } | ||
90 | dropdown_menu = { opacity = 1; } | ||
91 | }; | ||