Reno is the second iteration of the AWMTK-powered AwesomeWM config.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
2.0 KiB

  1. backend = "xrender";
  2. vsync = true;
  3. # Shadow
  4. shadow = true; # Enabled client-side shadows on windows.
  5. shadow-radius = 12; # The blur radius for shadows. (default 12)
  6. shadow-offset-x = -7; # The left offset for shadows. (default -15)
  7. shadow-offset-y = -7; # The top offset for shadows. (default -15)
  8. shadow-opacity = 0.25;
  9. shadow-exclude = [
  10. "! name~=''",
  11. "n:e:Notification",
  12. "n:e:Plank",
  13. "n:e:Docky",
  14. "g:e:Synapse",
  15. "g:e:Kupfer",
  16. "g:e:Conky",
  17. "n:w:*Firefox*",
  18. "n:w:*Chrome*",
  19. "n:w:*Chromium*",
  20. "class_g ?= 'Notify-osd'",
  21. "class_g ?= 'Cairo-dock'",
  22. "class_g ?= 'Xfce4-notifyd'",
  23. "class_g ?= 'Xfce4-power-manager'",
  24. #"class_g ?= 'awesome'",
  25. #"class_g ?= 'Awesome'"
  26. ];
  27. # The shadow exclude options are helpful if you have shadows enabled. Due to the way compton draws its shadows, certain applications will have visual glitches
  28. # (most applications are fine, only apps that do weird things with xshapes or argb are affected).
  29. # This list includes all the affected apps I found in my testing. The "! name~=''" part excludes shadows on any "Unknown" windows, this prevents a visual glitch with the XFWM alt tab switcher.
  30. # Fading
  31. fading = true;
  32. # Fade windows during opacity changes.
  33. fade-delta = 4; # The time between steps in a fade in milliseconds. (default 10).
  34. fade-in-step = 0.03; # Opacity change between steps while fading in. (default 0.028).
  35. fade-out-step = 0.03; # Opacity change between steps while fading out. (default 0.03).
  36. #no-fading-openclose = true; # Fade windows in/out when opening/closing
  37. detect-client-opacity = true; # This prevents opacity being ignored for some apps. For example without this enabled my xfce4-notifyd is 100% opacity no matter what.
  38. # Window type settings
  39. wintypes: {
  40. tooltip = { fade = true; shadow = false; };
  41. # dock = { shadow = false; fade = false; };
  42. # dnd = { shadow = false; fade = false; };
  43. };
  44. # Disable fade for awesomewm components (causes lag with custom menus)
  45. #fade-exclude = [
  46. # "class_g ?= 'awesome'",
  47. # "class_g ?= 'Awesome'"
  48. #];