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.

57 lines
2.0 KiB

12 months ago
12 months ago
  1. backend = "glx";
  2. vsync = true;
  3. # Shadow
  4. blur-method = "dual_kawase";
  5. blur-strength = 5;
  6. blur-size = 7;
  7. shadow = true; # Enabled client-side shadows on windows.
  8. shadow-radius = 12; # The blur radius for shadows. (default 12)
  9. shadow-offset-x = -7; # The left offset for shadows. (default -15)
  10. shadow-offset-y = -7; # The top offset for shadows. (default -15)
  11. shadow-opacity = 0.25;
  12. shadow-exclude = [
  13. "! name~=''",
  14. "n:e:Notification",
  15. "n:e:Plank",
  16. "n:e:Docky",
  17. "g:e:Synapse",
  18. "g:e:Kupfer",
  19. "g:e:Conky",
  20. "n:w:*Firefox*",
  21. "n:w:*Chrome*",
  22. "n:w:*Chromium*",
  23. "class_g ?= 'Notify-osd'",
  24. "class_g ?= 'Cairo-dock'",
  25. "class_g ?= 'Xfce4-notifyd'",
  26. "class_g ?= 'Xfce4-power-manager'",
  27. #"class_g ?= 'awesome'",
  28. #"class_g ?= 'Awesome'"
  29. ];
  30. # 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
  31. # (most applications are fine, only apps that do weird things with xshapes or argb are affected).
  32. # 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.
  33. # Fading
  34. fading = true;
  35. # Fade windows during opacity changes.
  36. fade-delta = 4; # The time between steps in a fade in milliseconds. (default 10).
  37. fade-in-step = 0.03; # Opacity change between steps while fading in. (default 0.028).
  38. fade-out-step = 0.03; # Opacity change between steps while fading out. (default 0.03).
  39. #no-fading-openclose = true; # Fade windows in/out when opening/closing
  40. 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.
  41. # Window type settings
  42. wintypes: {
  43. tooltip = { fade = true; shadow = false; };
  44. # dock = { shadow = false; fade = false; };
  45. # dnd = { shadow = false; fade = false; };
  46. };
  47. # Disable fade for awesomewm components (causes lag with custom menus)
  48. #fade-exclude = [
  49. # "class_g ?= 'awesome'",
  50. # "class_g ?= 'Awesome'"
  51. #];