Advertisement
addy-dclxvi

compton.conf

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