1.conf 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. # vim: foldmethod=marker
  2. backend = "glx";
  3. vsync = false;
  4. use-damage = true
  5. unredir-if-possible = true;
  6. # glx-no-stencil = true;
  7. # glx-no-rebind-pixmap = true;
  8. # Fading {{{
  9. fading = true;
  10. fade-in-step = 0.09;
  11. fade-out-step = 0.08;
  12. fade-delta = 10;
  13. no-fading-openclose = false;
  14. # }}}
  15. # Wintypes {{{
  16. wintypes:
  17. {
  18. tooltip = { shadow = false; };
  19. };
  20. # }}}
  21. # Shadows {{{
  22. shadow = true;
  23. shadow-radius = 15;
  24. shadow-offset-x = -15;
  25. shadow-offset-y = -15;
  26. shadow-opacity = 0.75;
  27. shadow-exclude = [
  28. "bounding_shaped && !rounded_corners",
  29. "window_type = 'desktop'",
  30. "window_type = 'utility'",
  31. "window_type = 'splash'",
  32. "window_type = 'tooltip'",
  33. "window_type *= 'menu'",
  34. "window_type != 'dock' && BSPWM_TILED@:c = 1",
  35. "class_g *?= 'activate-linux'",
  36. ]
  37. # }}}
  38. # Blur {{{
  39. blur:
  40. {
  41. method = "dual_kawase";
  42. strength = 5;
  43. }
  44. blur-background = true;
  45. blur-background-frame = true;
  46. blur-background-fixed = true;
  47. blur-background-exclude = [
  48. "window_type = 'desktop'",
  49. "window_type *= 'menu'",
  50. "window_type = 'utility'",
  51. "window_type = 'tooltip'",
  52. "window_type = 'splash'",
  53. "class_g *?= 'screenkey'",
  54. "class_g *?= 'GLava'",
  55. "class_g *?= 'kdeconnectd'",
  56. "class_g *?= 'kdeconnect.daemon'",
  57. "class_g *?= 'activate-linux'",
  58. "_GTK_FRAME_EXTENTS@:c"
  59. ];
  60. # }}}
  61. # Opacity {{{
  62. frame-opacity = 0.8;
  63. # inactive-dim = 0.8;
  64. opacity-rule = [
  65. "95:class_g *?= 'chatterino'",
  66. "95:class_g *?= 'dunst'"
  67. ];
  68. # }}}
  69. # Rounded corners {{{
  70. corner-radius = 10.0;
  71. rounded-corners-exclude = [
  72. "window_type = 'dock'",
  73. "window_type = 'desktop'",
  74. "window_type = 'dropdown_menu'",
  75. "window_type = 'popup_menu'",
  76. "window_type = 'utility'",
  77. "window_type = 'tooltip'",
  78. "window_type = 'splash'",
  79. "class_g *?= 'dunst'",
  80. "BSPWM_TILED@:c = 1",
  81. "_NET_WM_STATE@[*]:32a = '_NET_WM_STATE_FULLSCREEN'",
  82. ];
  83. # }}}