.compton.conf 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # || compton config ||
  2. #
  3. # --|| Fade ||--
  4. fading=true # Enable fade
  5. fade-delta=5 # Fade animation rate
  6. fade-in-step=0.0375 # Fade in speed
  7. fade-out-step=10 # Fade out speed
  8. # Prevent fading specific windows
  9. fade-exclude=[ ]
  10. # --|| Shadow ||--
  11. shadow=true # Enable shadow
  12. no-dock-shadow=true # Avoid drawing shadows above panels or docks
  13. no-dnd-shadow=true # Avoid drawing shadows above drag-and-drop objects
  14. clear-shadow=true # Clear shadow masks apart behind windows
  15. shadow-opacity=0.25 # Shadow opacity
  16. shadow-radius=0 # Shadow blur radius
  17. shadow-offset-x=1 # Horizontal shadow offset
  18. shadow-offset-y=1 # Vertical shadow offset
  19. # Prevent drawing shadows above specific windows
  20. shadow-exclude=[
  21. "! name~=''",
  22. "class_g='Conky'",
  23. "class_g='Firefox' && argb",
  24. "class_g='Iceweasel-UXP' && argb"
  25. ]
  26. # --|| Opacity ||--
  27. # --|| Other ||--
  28. mark-wmwin-focused=true # Mark focused windows
  29. mark-ovredir-focused=true # Mark focused override-redirect windows
  30. use-ewmh-active-win=true # Enable EWMH support for specific WMs
  31. detect-transient=true # Use transient to group windows
  32. detect-client-leader=true # Use client leader to group windows
  33. paint-on-overlay=true # Paint on the X composite overlay window
  34. unredir-if-possible=false # Unredirect all windows in full-screen mode
  35. # Prevent focusing specific windows
  36. focus-exclude=[
  37. "name*='slock'"
  38. ]
  39. # --|| Window type settings ||--
  40. wintypes:
  41. {
  42. tooltip={
  43. fade=true # Enable fade
  44. shadow=false # Enable shadow
  45. focus=true # Enable focus
  46. opacity=0.875 # Opacity
  47. }
  48. }