Advertisement
Guest User

picom.conf

a guest
Jan 25th, 2020
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. # Shadow
  2. shadow = true;
  3. shadow-radius = 7;
  4. shadow-offset-x = -7;
  5. shadow-offset-y = -7;
  6. log-level = "warn";
  7. # log-file = "/path/to/your/log/file";
  8. # shadow-opacity = 0.7;
  9. # shadow-red = 0.0;
  10. # shadow-green = 0.0;
  11. # shadow-blue = 0.0;
  12. shadow-exclude = [
  13. "name = 'Notification'",
  14. "class_g = 'Conky'",
  15. "class_g ?= 'Notify-osd'",
  16. "class_g = 'Cairo-clock'",
  17. "_GTK_FRAME_EXTENTS@:c"
  18. ];
  19. # shadow-exclude = "n:e:Notification";
  20. # shadow-exclude-reg = "x10+0+0";
  21. # xinerama-shadow-crop = true;
  22.  
  23. # Opacity
  24. inactive-opacity = 0.8;
  25. # active-opacity = 0.8;
  26. frame-opacity = 0.7;
  27. inactive-opacity-override = false;
  28. # inactive-dim = 0.2;
  29. # inactive-dim-fixed = true;
  30. blur-method = "dual_kawase"
  31. blur-strength = 6
  32. blur-background = true;
  33. # blur-background-frame = true;
  34. # blur-kern = "3x3box";
  35. # blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
  36. blur-background-fixed = true;
  37. blur-background-exclude = [
  38. "window_type = 'dock'",
  39. "window_type = 'desktop'",
  40. "_GTK_FRAME_EXTENTS@:c"
  41. ];
  42. # opacity-rule = [ "80:class_g = 'URxvt'" ];
  43.  
  44. # max-brightness = 0.66
  45.  
  46. # Fading
  47. fading = true;
  48. # fade-delta = 30;
  49. fade-in-step = 0.03;
  50. fade-out-step = 0.03;
  51. # no-fading-openclose = true;
  52. # no-fading-destroyed-argb = true;
  53. fade-exclude = [ ];
  54.  
  55. # Other
  56. backend = "glx";
  57. mark-wmwin-focused = true;
  58. mark-ovredir-focused = true;
  59. # use-ewmh-active-win = true;
  60. detect-rounded-corners = true;
  61. detect-client-opacity = true;
  62. refresh-rate = 0;
  63. vsync = true;
  64. # sw-opti = true;
  65. # unredir-if-possible = true;
  66. # unredir-if-possible-delay = 5000;
  67. # unredir-if-possible-exclude = [ ];
  68. focus-exclude = [ "class_g = 'Cairo-clock'" ];
  69. detect-transient = true;
  70. detect-client-leader = true;
  71. invert-color-include = [ ];
  72. # resize-damage = 1;
  73.  
  74. # GLX backend
  75. # glx-no-stencil = true;
  76. # glx-no-rebind-pixmap = true;
  77. # xrender-sync-fence = true;
  78. use-damage = true;
  79.  
  80. # Window type settings
  81. wintypes:
  82. {
  83. tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
  84. dock = { shadow = false; }
  85. dnd = { shadow = false; }
  86. popup_menu = { opacity = 0.8; }
  87. dropdown_menu = { opacity = 0.8; }
  88. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement