Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. # Rendering
  2.  
  3. backend = "glx";
  4.  
  5. glx-no-stencil = true;
  6. glx-no-rebind-pixma = true;
  7. glx-no-rebind-pixmap = true;
  8. experimental-backends = true;
  9. blur-background-fixed = true;
  10. use-damage = false;
  11. glx-swap-method = 3;
  12. vsync = true;
  13.  
  14. # Shadows
  15.  
  16. shadow = false;
  17. shadow-radius = 12;
  18. shadow-offset-x = -15;
  19. shadow-offset-y = 15;
  20. shadow-opacity = 0.60;
  21.  
  22. shadow-exclude = [
  23. "! name~=''",
  24. "name = 'Notification'",
  25. "name = 'Plank'",
  26. "name = 'Docky'",
  27. "name = 'Kupfer'",
  28. "name = 'xfce4-notifyd'",
  29. "name *= 'VLC'",
  30. "name *= 'compton'",
  31. # "name *= 'Chromium'",
  32. "name *= 'Chrome'",
  33. "class_g = 'Conky'",
  34. "class_g = 'Kupfer'",
  35. "class_g = 'Synapse'",
  36. "class_g ?= 'Notify-osd'",
  37. "class_g ?= 'Cairo-dock'",
  38. "class_g ?= 'Xfce4-notifyd'",
  39. "class_g ?= 'Xfce4-power-manager'",
  40. "_GTK_FRAME_EXTENTS@:c"
  41.  
  42. ];
  43.  
  44. shadow-ignore-shaped = false;
  45.  
  46. # Opacity
  47.  
  48. inactive-opacity = 0.8;
  49. active-opacity = 1;
  50. frame-opacity = 1;
  51. inactive-opacity-override = false;
  52.  
  53. inactive-dim = 0.18;
  54.  
  55. # Blur
  56.  
  57. blur-background = true;
  58. blur-background-frame = true;
  59. blur-background-exclude = [
  60. "window_type = 'desktop'"
  61. ];
  62.  
  63. #blur-method = "kawase";
  64. #blur-strength = 9;
  65.  
  66. blur:
  67. {
  68. method = "gaussian";
  69. size = 30;
  70. deviation = 100;
  71. }
  72.  
  73. # Fading
  74.  
  75. fading = true;
  76. fade-delta = 4;
  77. fade-in-step = 0.028;
  78. fade-out-step = 0.03;
  79. no-fading-openclose = true;
  80. fade-exclude = [ ];
  81.  
  82. # Misc
  83.  
  84. mark-wmwin-focused = true;
  85. mark-ovredir-focused = true;
  86. use-ewmh-active-win = true;
  87. detect-rounded-corners = true;
  88. detect-client-opacity = true;
  89. refresh-rate = 0;
  90. dbe = false;
  91. sw-opti = false;
  92. unredir-if-possible = true;
  93. focus-exclude = [ ];
  94. detect-transient = true;
  95. detect-client-leader = true;
  96.  
  97. wintypes:
  98. {
  99. tooltip =
  100. {
  101. fade = true;
  102. shadow = false;
  103. opacity = 0.85;
  104. focus = true;
  105. };
  106. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement