Advertisement
Guest User

Untitled

a guest
May 25th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. # Shadow
  2. shadow = true; # Enabled client-side shadows on windows.
  3. no-dock-shadow = true; # Avoid drawing shadows on dock/panel windows.
  4. no-dnd-shadow = true; # Don't draw shadows on DND windows.
  5. shadow-radius = 7;
  6. shadow-offset-x = -7;
  7. shadow-offset-y = -7;
  8. shadow-opacity = 0.5;
  9.  
  10. shadow-exclude = [
  11. "n:e:Notification",
  12. "n:e:VLC",
  13. "g:e:Firefox",
  14. "g:e:Notify-osd",
  15. "g:e:Xfce4-notifyd",
  16. "g:e:Xfce4-power-manager"
  17. ];
  18. shadow-ignore-shaped = true;
  19.  
  20. # Opacity
  21. inactive-opacity = 0.99;
  22. inactive-opacity-override = true;
  23.  
  24. # Other
  25. mark-wmwin-focused = true;
  26. mark-ovredir-focused = true;
  27. detect-rounded-corners = true;
  28. backend = "glx"
  29. glx-no-stencil = true;
  30. paint-on-overlay = true;
  31. vsync = "opengl-swc";
  32. fade-delta = 4;
  33.  
  34. # Window type settings
  35. wintypes:
  36. {
  37. dropdown_menu = { shadow = false; };
  38. popup_menu = { shadow = false; };
  39. menu = { shadow = false; };
  40. tooltip = { fade = true; shadow = false; };
  41. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement