Advertisement
Guest User

Untitled

a guest
Nov 13th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. #################################
  2. #
  3. # Backend
  4. #
  5. #################################
  6.  
  7. # Backend to use: "xrender" or "glx".
  8. # GLX backend is typically much faster but depends on a sane driver.
  9. backend = "glx";
  10. unredir-if-possible = true;
  11. vsync = "none";
  12.  
  13. #################################
  14. #
  15. # Shadows
  16. #
  17. #################################
  18.  
  19. # Enabled client-side shadows on windows.
  20. shadow = true;
  21. # Don't draw shadows on DND windows.
  22. no-dnd-shadow = false;
  23. # Avoid drawing shadows on dock/panel windows.
  24. no-dock-shadow = true;
  25. # Zero the part of the shadow's mask behind the window. Fix some weirdness with ARGB windows.
  26. clear-shadow = true;
  27. # The blur radius for shadows. (default 12)
  28. shadow-radius = 12; # Was 13
  29. # The left offset for shadows. (default -15)
  30. shadow-offset-x = -15;
  31. # The top offset for shadows. (default -15)
  32. shadow-offset-y = -15;
  33. # The translucency for shadows. (default .75)
  34. shadow-opacity = 0.75;
  35.  
  36. # Set if you want different colour shadows, default 0.30
  37. shadow-red = 0.25;
  38. shadow-green = 0.15;
  39. shadow-blue = 0.25;
  40.  
  41.  
  42. # The shadow exclude options are helpful if you have shadows enabled. Due to the way compton draws its shadows, certain applications will have visual glitches
  43. # (most applications are fine, only apps that do weird things with xshapes or argb are affected).
  44. # This list includes all the affected apps I found in my testing. The "! name~=''" part excludes shadows on any "Unknown" windows, this prevents a visual glitch with the XFWM alt tab switcher.
  45. # Avoid drawing shadow on all shaped windows (see also: --detect-rounded-corners)
  46.  
  47. shadow-exclude = ["i:e:Conky"];
  48. shadow-ignore-shaped = true;
  49.  
  50.  
  51.  
  52.  
  53.  
  54. #################################
  55. #
  56. # Opacity
  57. #
  58. #################################
  59.  
  60. menu-opacity = 0.8;
  61. inactive-opacity = 1.0;
  62. active-opacity = 1.0;
  63. frame-opacity = 1.0;
  64. alpha-step = 0.06;
  65. blur-background = true;
  66. blur-background-exclude = ["i:e:cairo-dock"];
  67. blur-kern = "9,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,";
  68.  
  69.  
  70. #################################
  71. #
  72. # Fading
  73. #
  74. #################################
  75.  
  76. # Fade windows during opacity changes.
  77. fading = true;
  78. # The time between steps in a fade in milliseconds. (default 10).
  79. fade-delta = 4;
  80. # Opacity change between steps while fading in. (default 0.028).
  81. fade-in-step = 0.02;
  82. # Opacity change between steps while fading out. (default 0.03).
  83. fade-out-step = 0.02;
  84. # Fade windows in/out when opening/closing
  85. # no-fading-openclose = true;
  86.  
  87. # Specify a list of conditions of windows that should not be faded.
  88. #fade-exclude = [
  89. # "name = 'poniesbox'"
  90. #];
  91.  
  92. wintypes:
  93. {
  94. tooltip =
  95. {
  96. # fade: Fade the particular type of windows.
  97. fade = true;
  98. # shadow: Give those windows shadow
  99. shadow = false;
  100. # opacity: Default opacity for the type of windows.
  101. opacity = 0.85;
  102. # focus: Whether to always consider windows of this type focused.
  103. focus = true;
  104. };
  105.  
  106. #Window type settings
  107. wintypes:
  108. {
  109. tooltip = { fade = true; shadow = false; };
  110. menu = { shadow = false; };
  111. dropdown_menu = { shadow = false; };
  112. popup_menu = { shadow = false; };
  113. };
  114. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement