Advertisement
Guest User

compton.conf

a guest
Apr 21st, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.00 KB | None | 0 0
  1. shadow = true;              # -c
  2. no-dnd-shadow = true;       # -G
  3. no-dock-shadow = true;      # -C
  4. clear-shadow = true;        # -z
  5. shadow-radius = 15;         # -r
  6. shadow-offset-x = -15;      # -l
  7. shadow-offset-y = -15;      # -t
  8. shadow-opacity = 0.7;       # -o
  9. shadow-red = 0.0;
  10. shadow-green = 0.0;
  11. shadow-blue = 0.0;
  12. shadow-exclude = [
  13.     "! name~=''",
  14.     "name = 'Notification'",
  15.     "name = 'conky (schierke)'",
  16.     "class_g = 'Conky'",
  17.     "class_g ?= 'Notify-osd'",
  18.     "class_g = 'Cairo-clock'",
  19.     "_GTK_FRAME_EXTENTS@:c"
  20. ];
  21. # Avoid drawing shadow on all shaped windows (see also: --detect-rounded-corners)
  22. shadow-ignore-shaped = false;
  23.  
  24. xinerama-shadow-crop = false;
  25. menu-opacity = 0.8;         # -m
  26. inactive-opacity = 0.5;     # -i
  27. inactive-opacity-override = true;
  28. active-opacity = 1.0;
  29. frame-opacity = 0.7;
  30. alpha-step = 0.06;
  31. inactive-dim = 0.75;
  32. opacity-rule = [
  33.     "95:class_g = 'kitty'",
  34.     "95:class_g = 'Pcmanfm'",
  35.     "85:class_g = 'qterminal'",
  36.     "95:class_g = 'Sublime_text'",
  37.     "85:class_g = 'Termite'",
  38.     "95:class_g = 'Thunderbird'"
  39. ];
  40.  
  41. # blur-kern = "3x3box";
  42. # blur-kern = "3x3gaussian";
  43. # blur-kern = "5x5box";
  44. # blur-kern = "5x5gaussian";
  45. # blur-kern = "7x7box";
  46. # blur-kern = "7x7gaussian";
  47. # blur-kern = "9x9gaussian";
  48. blur-kern = "11x11gaussian";
  49. blur-method = "kawase";
  50. blur-strength = 20;
  51. blur-background = true;
  52. blur-background-fixed = true;
  53. blur-background-frame = true;
  54. blur-background-exclude = [
  55.     "window_type = 'dock'",
  56.     "window_type = 'desktop'",
  57.     "_GTK_FRAME_EXTENTS@:c"
  58. ];
  59. backend = "glx";
  60. mark-wmwin-focused = true;
  61. mark-ovredir-focused = false;
  62. detect-client-opacity = true;
  63. detect-rounded-corners = true;
  64. vsync = "opengl-swc";
  65.  
  66. dbe = false;
  67. paint-on-overlay = true;
  68. sw-opti = true;
  69. unredir-if-possible = true;
  70. detect-transient = true;
  71. detect-client-leader = true;
  72. glx-no-stencil = true;
  73.  
  74. # fading = true;
  75. # fade-delta = 4;
  76. # fade-in-step = 0.03;
  77. # fade-out-step = 0.03;
  78. # fade-exclude = [
  79. #     "class_g = 'Subl3'",
  80. #     "class_g = 'Vivaldi-snapshot'",
  81. #     "class_g = 'Firefox'",
  82. #     "class_g = 'Opera'",
  83. #     "class_g = 'mpv'",
  84. #     "class_g = 'Caja'",
  85. #     "class_g = 'Tilda'",
  86. #     "class_g = 'jetbrains-webstorm'",
  87. #     "class_g = 'jetbrains-idea'",
  88. #     "class_g = 'jetbrains-pycharm'",
  89. #     "class_g = 'Vivaldi-stable'",
  90. #     "class_g = 'Google-chrome'",
  91. #     "class_g = 'Google-chrome-unstable'",
  92. #     "class_g = 'Transmission-gtk'",
  93. #     "class_g = 'TelegramDesktop'",
  94. #     "class_g = 'XTerm'",
  95. #     "class_g = 'llpp'",
  96. # ];
  97.  
  98. refresh-rate = 0;
  99.  
  100. invert-color-include = [ ];
  101. glx-copy-from-front = false;
  102. glx-swap-method = "undefined";
  103. wintypes :
  104. {
  105.   tooltip :
  106.   {
  107.     fade = true;
  108.     shadow = false;
  109.     opacity = 0.75;
  110.     focus = true;
  111.   };
  112. };
  113.  
  114. focus-exclude = [
  115.     "class_g = 'Cairo-clock'",
  116.     "class_g = 'Conky'",
  117.     "class_g = 'dmenu'",
  118.     "class_g = 'i3-frame'",
  119.     "n:a:Conky",
  120.     "_NET_WM_NAME@:s = 'rofi'",
  121.     "_NET_WM_NAME@:s = 'dmenu'"
  122. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement