summaryrefslogtreecommitdiffstats
path: root/.config/compton
diff options
context:
space:
mode:
authorYigit Sever2019-03-17 23:09:49 +0300
committerYigit Sever2019-03-17 23:18:28 +0300
commitea211500227aa58f5e495777743c5d391cbc3110 (patch)
treeafa2b455f9fea40b45dbf8a742c0d0d498024edb /.config/compton
downloaddotfiles-ea211500227aa58f5e495777743c5d391cbc3110.tar.gz
dotfiles-ea211500227aa58f5e495777743c5d391cbc3110.tar.bz2
dotfiles-ea211500227aa58f5e495777743c5d391cbc3110.zip
Initial commit
Diffstat (limited to '.config/compton')
-rw-r--r--.config/compton/compton.conf86
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
2shadow = true;
3shadow-radius = 0;
4shadow-offset-x = 10;
5shadow-offset-y = 5;
6log-level = "warn";
7# log-file = "/path/to/your/log/file";
8shadow-opacity = 0.8;
9#shadow-red = 0.33;
10#shadow-green = 0.33;
11#shadow-blue = 0.33;
12shadow-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
24inactive-opacity = 0.95;
25# active-opacity = 0.8;
26frame-opacity = 0.7;
27inactive-opacity-override = false;
28inactive-dim = 0.0;
29# inactive-dim-fixed = true;
30#blur-background = true;
31# blur-background-frame = true;
32blur-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;
35blur-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
43fading = true;
44# fade-delta = 30;
45fade-in-step = 0.03;
46fade-out-step = 0.03;
47# no-fading-openclose = true;
48# no-fading-destroyed-argb = true;
49fade-exclude = [ ];
50
51# Other
52backend = "xrender";
53mark-wmwin-focused = true;
54mark-ovredir-focused = true;
55# use-ewmh-active-win = true;
56detect-rounded-corners = true;
57detect-client-opacity = true;
58refresh-rate = 0;
59vsync = "none";
60# sw-opti = true;
61# unredir-if-possible = true;
62# unredir-if-possible-delay = 5000;
63# unredir-if-possible-exclude = [ ];
64focus-exclude = [ "class_g = 'Cairo-clock'" ];
65detect-transient = true;
66detect-client-leader = true;
67invert-color-include = [ ];
68# resize-damage = 1;
69
70# GLX backend
71# glx-no-stencil = true;
72# glx-no-rebind-pixmap = true;
73glx-swap-method = "undefined";
74# glx-use-gpushader4 = true;
75# xrender-sync = true;
76# xrender-sync-fence = true;
77
78# Window type settings
79wintypes:
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};