Little_hobbit

mycomptonconf

Jun 25th, 2020
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.54 KB | None | 0 0
  1. # Shadow
  2. shadow = true;
  3. # no-dnd-shadow = true;
  4. no-dock-shadow = true;
  5. clear-shadow = true;
  6. detect-rounded-corners = true;
  7. shadow-radius = 5;
  8. shadow-offset-x = 1;
  9. shadow-offset-y = 1;
  10. shadow-opacity = .3;
  11. shadow-ignore-shaped = false;
  12. shadow-exclude = [
  13.     "name = 'Notification'",
  14. # workaround for conky until it provides window properties:
  15.     "override_redirect = 1 && !WM_CLASS@:s",
  16.     "class_g ?= 'Dmenu'",
  17. #   "class_g ?= 'Dunst'",
  18. # disable shadows for hidden windows:
  19.     "_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'",
  20.     "_GTK_FRAME_EXTENTS@:c",
  21. # disables shadows on sticky windows:
  22. #   "_NET_WM_STATE@:32a *= '_NET_WM_STATE_STICKY'",
  23. # disables shadows on i3 frames
  24.     "class_g ?= 'i3-frame'"
  25. ];
  26.  
  27. # shadow-exclude-reg = "x10+0+0";
  28. # xinerama-shadow-crop = true;
  29.  
  30. menu-opacity = 0.95;
  31.  
  32. inactive-opacity = 0.93;
  33. #active-opacity = 1;
  34. #alpha-step = 0.01;
  35. #inactive-dim = 0.0;
  36. #blur-background = false;
  37. #blur-kern = "3x3box";
  38.  
  39. #fading = false;
  40. #fade-delta = 1;
  41. #fade-in-step = 0.03;
  42. #fade-out-step = 0.03;
  43. #fade-exclude = [ ];
  44.  
  45. backend = "xrender";
  46. mark-wmwin-focused = true;
  47. mark-ovredir-focused = true;
  48. detect-client-opacity = true;
  49. unredir-if-possible = true;
  50. refresh-rate = 0;
  51. vsync = true;
  52. dbe = false;
  53. focus-exclude = [ "class_g = 'Cairo-clock'" ];
  54. detect-transient = true;
  55. detect-client-leader = true;
  56. invert-color-include = [ ];
  57. glx-copy-from-front = true;
  58. glx-swap-method = 2;
  59. # xrender-sync = true;
  60. xrender-sync-fence = true;
  61.  
  62. #opacity-rule = [
  63. #"99:name *?= 'Call'",
  64. #"99:class_g = 'Chromium'",
  65. #"99:name *?= 'Conky'",
  66. #"99:class_g = 'Darktable'",
  67. #"50:class_g = 'Dmenu'",
  68. #"99:name *?= 'Event'",
  69. #"99:class_g = 'Firefox'",
  70. #"99:class_g = 'GIMP'",
  71. #"99:name *?= 'Image'",
  72. #"99:class_g = 'Lazpaint'",
  73. #"99:class_g = 'Midori'",
  74. #"99:name *?= 'Minitube'",
  75. #"99:class_g = 'Mousepad'",
  76. #"99:name *?= 'MuseScore'",
  77. #"90:name *?= 'Page Info'",
  78. #"99:name *?= 'Pale Moon'",
  79. #"90:name *?= 'Panel'",
  80. #"99:class_g = 'Pinta'",
  81. #"90:name *?= 'Restart'",
  82. #"99:name *?= 'sudo'",
  83. #"99:name *?= 'Screenshot'",
  84. #"99:class_g = 'Viewnior'",
  85. #"99:class_g = 'VirtualBox'",
  86. #"99:name *?= 'VLC'",
  87. #"99:name *?= 'Write'",
  88. #"93:class_g = 'URxvt' && !_NET_WM_STATE@:32a",
  89. #"0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'",
  90. #"96:_NET_WM_STATE@:32a *= '_NET_WM_STATE_STICKY'"
  91. #];
  92.  
  93. wintypes :
  94. {
  95.   tooltip :
  96.   {
  97.     fade = true;
  98.     shadow = false;
  99.     opacity = 0.85;
  100.     focus = true;
  101.   };
  102.   fullscreen :
  103.   {
  104.     fade = true;
  105.     shadow = false;
  106.     opacity = 1;
  107.     focus = true;
  108.   };
  109. };
Add Comment
Please, Sign In to add comment