Advertisement
Guest User

Compton with Inactive dimming and dropshadows

a guest
Feb 2nd, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.11 KB | None | 0 0
  1. ## Compton.conf
  2. ## Put in /home/USER/.config/compton.conf
  3.  
  4. # Shadow
  5. shadow = true;
  6. no-dnd-shadow = true;
  7. no-dock-shadow = true;
  8. clear-shadow = true;
  9. shadow-radius = 8;
  10. shadow-offset-x = -5;
  11. shadow-offset-y = -5;
  12. shadow-opacity = 0.3;
  13. # shadow-red = 0.0;
  14. # shadow-green = 0.0;
  15. # shadow-blue = 0.0;
  16. #shadow-exclude = [ "n:e:Notification" ];
  17. # shadow-exclude = "n:e:Notification";
  18. #shadow-ignore-shaped = false;
  19.  
  20. # Opacity
  21. #menu-opacity = 0.9;
  22. #inactive-opacity = 0.7;
  23. #frame-opacity = 0.7;
  24. inactive-opacity-override = false;
  25. alpha-step = 0.06;
  26. inactive-dim = 0.2;
  27. inactive-dim-fixed = true;
  28. # blur-background = true;
  29. # blur-background-frame = true;
  30.  
  31. # Fading
  32. fading = false;
  33. #fade-delta = 10;
  34. fade-in-step = 0.05;
  35. fade-out-step = 0.05;
  36. # no-fading-openclose = true;
  37.  
  38. # Other
  39. mark-wmwin-focused = true;
  40. mark-ovredir-focused = true;
  41. detect-rounded-corners = true;
  42. detect-client-opacity = true;
  43. #refresh-rate = 0;
  44. #vsync = "none";
  45. dbe = false;
  46. paint-on-overlay = false;
  47. sw-opti = false;
  48.  
  49. # Window type settings
  50. wintypes:
  51. {
  52.   tooltip = { fade = false; shadow = false; opacity = 0.9; };
  53. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement