Advertisement
Ogis

Compton config

Jul 26th, 2017
2,891
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. # Source : https://raw.githubusercontent.com/chjj/compton/master/compton.sample.conf
  2.  
  3. # Shadow
  4. shadow = true;
  5. no-dnd-shadow = true;
  6. no-dock-shadow = true;
  7. clear-shadow = true;
  8. shadow-radius = 7;
  9. shadow-offset-x = -7;
  10. shadow-offset-y = -7;
  11. # shadow-opacity = 0.7;
  12. # shadow-red = 0.0;
  13. # shadow-green = 0.0;
  14. # shadow-blue = 0.0;
  15. shadow-exclude = [
  16. "name = 'Notification'",
  17. "class_g = 'Conky'",
  18. "class_g ?= 'Notify-osd'",
  19. "class_g = 'Cairo-clock'",
  20. "_GTK_FRAME_EXTENTS@:c"
  21. ];
  22. # shadow-exclude = "n:e:Notification";
  23. # shadow-exclude-reg = "x10+0+0";
  24. # xinerama-shadow-crop = true;
  25.  
  26. # Opacity
  27. menu-opacity = 0.9;
  28. inactive-opacity = 0.9;
  29. # active-opacity = 0.8;
  30. frame-opacity = 0.9;
  31. inactive-opacity-override = false;
  32. alpha-step = 0.06;
  33. inactive-dim = 0.3;
  34. # inactive-dim-fixed = true;
  35. # blur-background = true;
  36. # blur-background-frame = true;
  37. blur-kern = "3x3box";
  38. # 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";
  39. # blur-background-fixed = true;
  40. blur-background-exclude = [
  41. "window_type = 'dock'",
  42. "window_type = 'desktop'",
  43. "_GTK_FRAME_EXTENTS@:c"
  44. ];
  45. # opacity-rule = [ "80:class_g = 'URxvt'" ];
  46.  
  47. # Fading
  48. fading = true;
  49. fade-delta = 10;
  50. fade-in-step = 0.03;
  51. fade-out-step = 0.03;
  52. # no-fading-openclose = true;
  53. # no-fading-destroyed-argb = true;
  54. fade-exclude = [ ];
  55.  
  56. # Other
  57. backend = "xrender";
  58. mark-wmwin-focused = true;
  59. mark-ovredir-focused = true;
  60. # use-ewmh-active-win = true;
  61. detect-rounded-corners = true;
  62. detect-client-opacity = true;
  63. refresh-rate = 0;
  64. vsync = "none";
  65. dbe = false;
  66. paint-on-overlay = true;
  67. # sw-opti = true;
  68. # unredir-if-possible = true;
  69. # unredir-if-possible-delay = 5000;
  70. # unredir-if-possible-exclude = [ ];
  71. focus-exclude = [ "class_g = 'Cairo-clock'" ];
  72. detect-transient = true;
  73. detect-client-leader = true;
  74. invert-color-include = [ ];
  75. # resize-damage = 1;
  76.  
  77. # GLX backend
  78. # glx-no-stencil = true;
  79. glx-copy-from-front = false;
  80. # glx-use-copysubbuffermesa = true;
  81. # glx-no-rebind-pixmap = true;
  82. glx-swap-method = "undefined";
  83. # glx-use-gpushader4 = true;
  84. # xrender-sync = true;
  85. # xrender-sync-fence = true;
  86.  
  87. # Window type settings
  88. wintypes:
  89. {
  90. tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; };
  91. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement