Advertisement
GeeckoDev

compton.conf

Jul 19th, 2014
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.93 KB | None | 0 0
  1. # Shadow
  2. shadow = true;
  3. no-dock-shadow = true;
  4. no-dnd-shadow = true;
  5. clear-shadow = false;
  6. shadow-ignore-shaped = true;
  7. shadow-exclude = [ "_GTK_FRAME_EXTENTS@:c" ];
  8.  
  9. # Fading
  10. fading = true;
  11. fade-delta = 4;
  12.  
  13. # Other
  14. backend = "xrender";
  15. mark-wmwin-focused = true;
  16. mark-ovredir-focused = true;
  17. use-ewmh-active-win = false;
  18. detect-rounded-corners = true;
  19. detect-client-opacity = true;
  20. refresh-rate = 0;
  21. vsync = "opengl";
  22. paint-on-overlay = true;
  23. sw-opti = false;
  24. unredir-if-possible = true;
  25.  
  26. # GLX backend
  27. glx-no-stencil = true;
  28. glx-no-rebind-pixmap = false;
  29. glx-swap-method = "undefined";
  30.  
  31. # Window type settings
  32. wintypes:
  33. {
  34.   tooltip = { fade = true; shadow = false; opacity = 0.75; focus = true; };
  35.   # fade: Fade the particular type of windows.
  36.   # shadow: Give those windows shadow
  37.   # opacity: Default opacity for the type of windows.
  38.   # focus: Whether to always consider windows of this type focused.
  39. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement