picom.conf 994 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #################################
  2. # GLX backend
  3. #################################
  4. backend = "xrender";
  5. vsync = false;
  6. xrender-sync-fence = "true";
  7. glx-swap-method = -1;
  8. #################################
  9. # Shadows
  10. #################################
  11. shadow = false;
  12. shadow-radius = 5;
  13. shadow-offset-x = -5;
  14. shadow-offset-y = -5;
  15. shadow-opacity = 0.2;
  16. shadow-ignore-shaped = false;
  17. #################################
  18. # Opacity
  19. #################################
  20. inactive-opacity = 0.2;
  21. active-opacity = 1;
  22. frame-opacity = 0.8;
  23. inactive-opacity-override = false;
  24. blur-background = true;
  25. blur-background-frame = true;
  26. blur-background-fixed = true;
  27. blur-background-exclude = [
  28. "window_type = 'dock'",
  29. "window_type = 'desktop'"
  30. ];
  31. blur-kern = "3x3box";
  32. blur-method = "kawase";
  33. blur-strength = 10;
  34. opacity-rule = [
  35. "90:class_g = 'Alacritty'",
  36. "class_g = 'firefox' && argb"
  37. ];
  38. #################################
  39. # Fading
  40. #################################
  41. fading = true;