diff options
author | Yigit Sever | 2019-03-17 23:09:49 +0300 |
---|---|---|
committer | Yigit Sever | 2019-03-17 23:18:28 +0300 |
commit | ea211500227aa58f5e495777743c5d391cbc3110 (patch) | |
tree | afa2b455f9fea40b45dbf8a742c0d0d498024edb /.config/compton | |
download | dotfiles-ea211500227aa58f5e495777743c5d391cbc3110.tar.gz dotfiles-ea211500227aa58f5e495777743c5d391cbc3110.tar.bz2 dotfiles-ea211500227aa58f5e495777743c5d391cbc3110.zip |
Initial commit
Diffstat (limited to '.config/compton')
-rw-r--r-- | .config/compton/compton.conf | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/.config/compton/compton.conf b/.config/compton/compton.conf new file mode 100644 index 0000000..223411d --- /dev/null +++ b/.config/compton/compton.conf | |||
@@ -0,0 +1,86 @@ | |||
1 | # Shadow | ||
2 | shadow = true; | ||
3 | shadow-radius = 0; | ||
4 | shadow-offset-x = 10; | ||
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 = 0.7; | ||
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 = [ "80:class_g = 'URxvt'" ]; | ||
41 | |||
42 | # Fading | ||
43 | fading = true; | ||
44 | # fade-delta = 30; | ||
45 | fade-in-step = 0.03; | ||
46 | fade-out-step = 0.03; | ||
47 | # no-fading-openclose = true; | ||
48 | # no-fading-destroyed-argb = true; | ||
49 | fade-exclude = [ ]; | ||
50 | |||
51 | # Other | ||
52 | backend = "xrender"; | ||
53 | mark-wmwin-focused = true; | ||
54 | mark-ovredir-focused = true; | ||
55 | # use-ewmh-active-win = true; | ||
56 | detect-rounded-corners = true; | ||
57 | detect-client-opacity = true; | ||
58 | refresh-rate = 0; | ||
59 | vsync = "none"; | ||
60 | # sw-opti = true; | ||
61 | # unredir-if-possible = true; | ||
62 | # unredir-if-possible-delay = 5000; | ||
63 | # unredir-if-possible-exclude = [ ]; | ||
64 | focus-exclude = [ "class_g = 'Cairo-clock'" ]; | ||
65 | detect-transient = true; | ||
66 | detect-client-leader = true; | ||
67 | invert-color-include = [ ]; | ||
68 | # resize-damage = 1; | ||
69 | |||
70 | # GLX backend | ||
71 | # glx-no-stencil = true; | ||
72 | # glx-no-rebind-pixmap = true; | ||
73 | glx-swap-method = "undefined"; | ||
74 | # glx-use-gpushader4 = true; | ||
75 | # xrender-sync = true; | ||
76 | # xrender-sync-fence = true; | ||
77 | |||
78 | # Window type settings | ||
79 | wintypes: | ||
80 | { | ||
81 | tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; }; | ||
82 | dock = { shadow = false; } | ||
83 | dnd = { shadow = false; } | ||
84 | popup_menu = { fade = true; shadow = true; opacity = 1; focus = true; full-shadow = true; } | ||
85 | dropdown_menu = { opacity = 1; } | ||
86 | }; | ||