diff options
| author | Shubham Saini <shubham6405@gmail.com> | 2019-12-02 12:21:04 +0000 |
|---|---|---|
| committer | Shubham Saini <shubham6405@gmail.com> | 2019-12-02 12:21:04 +0000 |
| commit | a42df546ce34429759a20bc2c4c240de045dbd0a (patch) | |
| tree | 4e7153d41d6a1b710f8002f2eb7b64231889b6cf /compton | |
using stow
Diffstat (limited to 'compton')
| -rw-r--r-- | compton/.config/compton.conf | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/compton/.config/compton.conf b/compton/.config/compton.conf new file mode 100644 index 0000000..4c7a37e --- /dev/null +++ b/compton/.config/compton.conf | |||
| @@ -0,0 +1,78 @@ | |||
| 1 | backend = "glx"; | ||
| 2 | glx-no-stencil = true; | ||
| 3 | glx-copy-from-front = false; | ||
| 4 | glx-swap-method = "undefined"; | ||
| 5 | shadow = false; | ||
| 6 | no-dnd-shadow = true; | ||
| 7 | no-dock-shadow = true; | ||
| 8 | shadow-radius = 4; | ||
| 9 | shadow-opacity = 0.6; | ||
| 10 | shadow-offset-x = -6; | ||
| 11 | shadow-offset-y = -2;clear-shadow = true; | ||
| 12 | shadow-exclude = [ | ||
| 13 | "! name~=''", | ||
| 14 | "name = 'Notification'", | ||
| 15 | "name = 'Plank'", | ||
| 16 | "name = 'Docky'", | ||
| 17 | "name = 'Kupfer'", | ||
| 18 | "name = 'xfce4-notifyd'", | ||
| 19 | "name *= 'VLC'", | ||
| 20 | "name *= 'compton'", | ||
| 21 | "name *= 'Chromium'", | ||
| 22 | "name *= 'Chrome'", | ||
| 23 | "class_g = 'Conky'", | ||
| 24 | "class_g = 'Kupfer'", | ||
| 25 | "class_g = 'Synapse'", | ||
| 26 | "class_g ?= 'Notify-osd'", | ||
| 27 | "class_g ?= 'Cairo-dock'", | ||
| 28 | "class_g ?= 'Xfce4-notifyd'", | ||
| 29 | "class_g ?= 'Xfce4-power-manager'", | ||
| 30 | "_GTK_FRAME_EXTENTS@:c" | ||
| 31 | ]; | ||
| 32 | shadow-ignore-shaped = false; | ||
| 33 | menu-opacity = 1; | ||
| 34 | inactive-opacity = 1; | ||
| 35 | active-opacity = 1; | ||
| 36 | frame-opacity = 1; | ||
| 37 | inactive-opacity-override = false; | ||
| 38 | alpha-step = 0.06; | ||
| 39 | blur-background = true; | ||
| 40 | blur-background-fixed = false; | ||
| 41 | blur-background-exclude = [ | ||
| 42 | "window_type = 'dock'", | ||
| 43 | "window_type = 'desktop'" | ||
| 44 | ]; | ||
| 45 | fading = true; | ||
| 46 | fade-delta = 2; | ||
| 47 | fade-in-step = 0.03; | ||
| 48 | fade-out-step = 0.03; | ||
| 49 | |||
| 50 | fade-exclude = [ ]; | ||
| 51 | mark-wmwin-focused = true; | ||
| 52 | mark-ovredir-focused = true; | ||
| 53 | use-ewmh-active-win = true; | ||
| 54 | detect-rounded-corners = true; | ||
| 55 | detect-client-opacity = true; | ||
| 56 | opacity-rule = [ | ||
| 57 | "0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'" | ||
| 58 | ]; | ||
| 59 | refresh-rate = 0; | ||
| 60 | vsync = "opengl-swc"; | ||
| 61 | dbe = false; | ||
| 62 | paint-on-overlay = true; | ||
| 63 | sw-opti = true; | ||
| 64 | unredir-if-possible = true; | ||
| 65 | focus-exclude = [ ]; | ||
| 66 | detect-transient = true; | ||
| 67 | detect-client-leader = true; | ||
| 68 | wintypes: | ||
| 69 | { | ||
| 70 | tooltip = | ||
| 71 | { | ||
| 72 | fade = true; | ||
| 73 | shadow = false; | ||
| 74 | opacity = 0.85; | ||
| 75 | focus = true; | ||
| 76 | }; | ||
| 77 | }; | ||
| 78 | |||
