Advertisement
Guest User

Untitled

a guest
May 15th, 2013
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.95 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. clear-shadow = true;        # Zero the part of the shadow's mask behind the window (experimental).
  6. shadow-radius = 7;      # The blur radius for shadows. (default 12)
  7. shadow-offset-x = -10;       # The left offset for shadows. (default -15)
  8. shadow-offset-y = -10;       # The top offset for shadows. (default -16)
  9. # shadow-opacity = 0.8;     # The translucency for shadows. (default .75)
  10. shadow-red   = 0.20;
  11. shadow-green = 0.55;
  12. shadow-blue  = 1.0;
  13. shadow-exclude = [ "g:si:Noti" ];
  14. # shadow-exclude = [ "n:e:Notification" ];    # Exclude conditions for shadows.
  15. # shadow-exclude = "n:e:Notification";
  16. shadow-ignore-shaped = true;
  17.  
  18. # Opacity
  19. menu-opacity = 0.9;         # The opacity for menus. (default 1.0)
  20. inactive-opacity = 1.0;         # Opacity of inactive windows. (0.1 - 1.0)
  21. #frame-opacity = 0.8;           # Opacity of window titlebars and borders. (0.1 - 1.0)
  22. inactive-opacity-override = true;   # Inactive opacity set by 'inactive-opacity' overrides value of _NET_WM_OPACITY.
  23.  
  24. # Fading
  25. fading = true;          # Fade windows during opacity changes.
  26. # fade-delta = 30;      # The time between steps in a fade in milliseconds. (default 10).
  27. fade-in-step = 0.03;        # Opacity change between steps while fading in. (default 0.028).
  28. fade-out-step = 0.03;       # Opacity change between steps while fading out. (default 0.03).
  29. # no-fading-openclose = true;   # Fade windows in/out when opening/closing.
  30.  
  31. # Other
  32. #inactive-dim = 0.5;        # Dim inactive windows. (0.0 - 1.0, defaults to 0).
  33. mark-wmwin-focused = true;  # Try to detect WM windows and mark them as active.
  34. mark-ovredir-focused = true;
  35. detect-rounded-corners = true;
  36.  
  37. # Window type settings
  38. wintypes:
  39. {
  40.   tooltip = { fade = true; shadow = false; opacity = 0.75; };
  41. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement