diff options
| author | Yigit Sever | 2020-12-08 14:11:55 +0300 |
|---|---|---|
| committer | Yigit Sever | 2020-12-08 14:11:55 +0300 |
| commit | adc8631a9f8baa9ce5f2a5a7570ff26eb3ccdcc3 (patch) | |
| tree | 9a77bac1e34abe1de30928416c5a33aae8d3cb04 | |
| parent | dd6061d8c85acdf7d32d810c05c9b6c4d7e3da5b (diff) | |
| download | dotfiles-adc8631a9f8baa9ce5f2a5a7570ff26eb3ccdcc3.tar.gz dotfiles-adc8631a9f8baa9ce5f2a5a7570ff26eb3ccdcc3.tar.bz2 dotfiles-adc8631a9f8baa9ce5f2a5a7570ff26eb3ccdcc3.zip | |
cleanup the picom config
| -rw-r--r-- | .config/picom/picom.conf | 54 |
1 files changed, 14 insertions, 40 deletions
diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index 78a57df..0e2be0a 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf | |||
| @@ -1,43 +1,28 @@ | |||
| 1 | # Shadow | 1 | # log |
| 2 | log-level = "warn"; | ||
| 3 | log-file = "/home/yigit/.local/share/picom/picom.log"; | ||
| 4 | |||
| 5 | # shadow | ||
| 2 | shadow = true; | 6 | shadow = true; |
| 3 | shadow-radius = 0; | 7 | shadow-radius = 0; |
| 4 | shadow-offset-x = 5; | 8 | shadow-offset-x = 5; |
| 5 | shadow-offset-y = 5; | 9 | shadow-offset-y = 5; |
| 6 | log-level = "warn"; | ||
| 7 | # log-file = "~/.picom.log"; | ||
| 8 | shadow-opacity = 0.8; | 10 | shadow-opacity = 0.8; |
| 9 | #shadow-red = 0.33; | 11 | |
| 10 | #shadow-green = 0.33; | ||
| 11 | #shadow-blue = 0.33; | ||
| 12 | shadow-exclude = [ | 12 | shadow-exclude = [ |
| 13 | "name = 'Notification'", | 13 | "name = 'Notification'", |
| 14 | "class_g = 'Conky'", | 14 | "class_g = 'Conky'", |
| 15 | "class_g = 'Dunst'", | 15 | "class_g = 'Dunst'", |
| 16 | "class_g ?= 'Notify-osd'", | ||
| 17 | "class_g = 'Cairo-clock'", | ||
| 18 | "_GTK_FRAME_EXTENTS@:c" | 16 | "_GTK_FRAME_EXTENTS@:c" |
| 19 | ]; | 17 | ]; |
| 20 | # shadow-exclude = "n:e:Notification"; | ||
| 21 | # shadow-exclude-reg = "x10+0+0"; | ||
| 22 | # xinerama-shadow-crop = true; | ||
| 23 | 18 | ||
| 24 | # Opacity | 19 | # opacity |
| 25 | inactive-opacity = 1; | 20 | inactive-opacity = 1; |
| 26 | # active-opacity = 0.8; | 21 | # active-opacity = 0.8; |
| 27 | frame-opacity = 1.0; | 22 | frame-opacity = 1.0; |
| 28 | inactive-opacity-override = false; | 23 | inactive-opacity-override = false; |
| 29 | inactive-dim = 0.0; | 24 | inactive-dim = 0.0; |
| 30 | # inactive-dim-fixed = true; | 25 | |
| 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 = [ | 26 | opacity-rule = [ |
| 42 | "100:_NET_WM_STATE@[0]:32a = '_NET_WM_STATE_FULLSCREEN'", | 27 | "100:_NET_WM_STATE@[0]:32a = '_NET_WM_STATE_FULLSCREEN'", |
| 43 | "100:_NET_WM_STATE@[1]:32a = '_NET_WM_STATE_FULLSCREEN'", | 28 | "100:_NET_WM_STATE@[1]:32a = '_NET_WM_STATE_FULLSCREEN'", |
| @@ -46,45 +31,34 @@ opacity-rule = [ | |||
| 46 | "100:_NET_WM_STATE@[4]:32a = '_NET_WM_STATE_FULLSCREEN'", | 31 | "100:_NET_WM_STATE@[4]:32a = '_NET_WM_STATE_FULLSCREEN'", |
| 47 | "0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'" | 32 | "0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'" |
| 48 | ]; | 33 | ]; |
| 49 | # Fading | 34 | |
| 35 | # fading | ||
| 50 | fading = true; | 36 | fading = true; |
| 51 | # fade-delta = 30; | ||
| 52 | fade-in-step = 0.03; | 37 | fade-in-step = 0.03; |
| 53 | fade-out-step = 0.03; | 38 | fade-out-step = 0.03; |
| 54 | # no-fading-openclose = true; | ||
| 55 | # no-fading-destroyed-argb = true; | ||
| 56 | fade-exclude = [ ]; | 39 | fade-exclude = [ ]; |
| 57 | 40 | ||
| 58 | # Other | 41 | # other |
| 59 | backend = "glx"; | 42 | backend = "glx"; |
| 60 | mark-wmwin-focused = true; | 43 | mark-wmwin-focused = true; |
| 61 | mark-ovredir-focused = true; | 44 | mark-ovredir-focused = true; |
| 62 | # use-ewmh-active-win = true; | ||
| 63 | detect-rounded-corners = true; | 45 | detect-rounded-corners = true; |
| 64 | detect-client-opacity = true; | 46 | detect-client-opacity = true; |
| 65 | refresh-rate = 0; | 47 | refresh-rate = 0; |
| 66 | vsync = true; | 48 | vsync = true; |
| 67 | # paint-on-overlay = true; | ||
| 68 | sw-opti = false; | 49 | sw-opti = false; |
| 69 | unredir-if-possible = false; | 50 | unredir-if-possible = false; |
| 70 | # unredir-if-possible-delay = 5000; | ||
| 71 | # unredir-if-possible-exclude = [ ]; | ||
| 72 | focus-exclude = [ "class_g = 'Cairo-clock'" ]; | ||
| 73 | detect-transient = true; | 51 | detect-transient = true; |
| 74 | detect-client-leader = true; | 52 | detect-client-leader = true; |
| 75 | invert-color-include = [ ]; | 53 | invert-color-include = [ ]; |
| 76 | # resize-damage = 1; | ||
| 77 | 54 | ||
| 78 | # GLX backend | 55 | # glx backend |
| 79 | glx-no-stencil = true; | 56 | glx-no-stencil = true; |
| 80 | glx-copy-from-front = false; | 57 | glx-copy-from-front = false; |
| 81 | use-damage = true | 58 | use-damage = true |
| 82 | # glx-no-rebind-pixmap = true; | ||
| 83 | # glx-swap-method = "undefined"; | ||
| 84 | # glx-use-gpushader4 = true; | ||
| 85 | # xrender-sync = true; | ||
| 86 | xrender-sync-fence = true; | 59 | xrender-sync-fence = true; |
| 87 | # Window type settings | 60 | |
| 61 | # window type settings | ||
| 88 | wintypes: | 62 | wintypes: |
| 89 | { | 63 | { |
| 90 | tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; }; | 64 | tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; }; |
