Add configs for compton, dunst, i3, i3status, jami, and mpv
[~bandali/configs] / .config / compton / compton.conf
1 # Shadow
2 shadow = true;
3 shadow-radius = 5;
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.7;
9 # shadow-red = 0.0;
10 # shadow-green = 0.0;
11 # shadow-blue = 0.0;
12 shadow-exclude = [
13 "name = 'Notification'",
14 "class_g = 'Conky'",
15 "class_g = 'Abrowser' && !window_type *= 'menu'",
16 "class_g ?= 'Notify-osd'",
17 "class_g = 'Cairo-clock'",
18 "_GTK_FRAME_EXTENTS@:c"
19 ];
20 # shadow-exclude = "n:e:Notification";
21 # shadow-exclude-reg = "x10+0+0";
22 # xinerama-shadow-crop = true;
23
24 # Opacity
25 inactive-opacity = 0.8;
26 # active-opacity = 0.8;
27 frame-opacity = 0.7;
28 inactive-opacity-override = false;
29 # inactive-dim = 0.2;
30 # inactive-dim-fixed = true;
31 # blur-background = true;
32 # blur-background-frame = true;
33 blur-kern = "3x3box";
34 # 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";
35 # blur-background-fixed = true;
36 blur-background-exclude = [
37 "window_type = 'dock'",
38 "window_type = 'desktop'",
39 "_GTK_FRAME_EXTENTS@:c"
40 ];
41 # opacity-rule = [ "80:class_g = 'URxvt'" ];
42
43 # Fading
44 fading = true;
45 fade-delta = 9;
46 fade-in-step = 0.5;
47 fade-out-step = 0.5;
48 # no-fading-openclose = true;
49 # no-fading-destroyed-argb = true;
50 fade-exclude = [ ];
51
52 # Other
53 backend = "glx";
54 mark-wmwin-focused = true;
55 mark-ovredir-focused = true;
56 # use-ewmh-active-win = true;
57 detect-rounded-corners = true;
58 detect-client-opacity = true;
59 refresh-rate = 0;
60 vsync = true;
61 # sw-opti = true;
62 # unredir-if-possible = true;
63 # unredir-if-possible-delay = 5000;
64 # unredir-if-possible-exclude = [ ];
65 focus-exclude = [ "class_g = 'Cairo-clock'" ];
66 detect-transient = true;
67 detect-client-leader = true;
68 invert-color-include = [ ];
69 # resize-damage = 1;
70
71 # GLX backend
72 # glx-no-stencil = true;
73 # glx-no-rebind-pixmap = true;
74 # xrender-sync-fence = true;
75 use-damage = false;
76
77 # Window type settings
78 wintypes:
79 {
80 tooltip = { fade = true; shadow = false; opacity = 0.95; focus = true; full-shadow = false; };
81 dock = { shadow = false; }
82 dnd = { shadow = false; }
83 popup_menu = { opacity = 0.8; }
84 dropdown_menu = { opacity = 0.8; }
85 };