Advertisement
Guest User

compton

a guest
Sep 18th, 2017
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. backend = "glx";
  2. vsync = "opengl-swc";
  3. # vsync = "opengl-mswc";
  4. refresh-rate = 0;
  5. glx-no-stencil = true;
  6. # glx-swap-method = "undefined";
  7. glx-swap-method = "exchange";
  8. glx-no-rebind-pixmap = true;
  9. # glx-copy-from-front = true;
  10. # glx-use-copysubbuffermesa = true;
  11. xrender-sync-fence = true;
  12. unredir-if-possible = true;
  13. paint-on-overlay = true;
  14. mark-wmwin-focused = true;
  15. mark-ovredir-focused = true;
  16. # use-ewmh-active-win = false;
  17. detect-transient = true;
  18. detect-client-leader = true;
  19. detect-client-opacity = true;
  20. dbe = false;
  21. sw-opti = false;
  22. invert-color-include = [ ];
  23. focus-exclude = [ "class_g = 'mpv'" ];
  24.  
  25.  
  26. ## Shadow
  27. shadow = true;
  28. no-dnd-shadow = true;
  29. no-dock-shadow = true;
  30. clear-shadow = true;
  31. shadow-ignore-shaped = true;
  32. detect-rounded-corners = true;
  33. shadow-radius = 7;
  34. shadow-offset-x = -9;
  35. shadow-offset-y = -9;
  36. shadow-opacity = 0.05;
  37. # xinerama-shadow-crop = true;
  38. # shadow-exclude-reg = "x10+0+0";
  39. shadow-exclude = [ "name = 'Notification'" ];
  40.  
  41.  
  42. ## Menu opacity
  43. menu-opacity = 0.85;
  44. inactive-opacity = 0.85;
  45. active-opacity = 1;
  46. # frame-opacity = 0.85;
  47. # inactive-opacity-override = true;
  48. alpha-step = 0.01;
  49. inactive-dim = 0.0;
  50. # blur-background = false;
  51. # blur-background-frame = false;
  52. # blur-background-fixed = false;
  53. blur-kern = "3x3box";
  54. opacity-rule = [ ];
  55. blur-background-exclude = [ ];
  56.  
  57.  
  58. ## Fading
  59. fading = true;
  60. fade-delta = 2;
  61. fade-in-step = 5;
  62. fade-out-step = 5;
  63. # no-fading-openclose = true;
  64. fade-exclude = [ ];
  65.  
  66.  
  67. ## Window type settings
  68. wintypes:
  69. {
  70. tooltip = { fade = true; shadow = true; opacity = 0.85; focus = true; };
  71. menu = { shadow = false; };
  72. dropdown_menu = { shadow = true; };
  73. popup_menu = { shadow = true; };
  74. fullscreen = { fade = true; shadow = false; opacity = 1; focus = true; };
  75. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement