Guest User

Untitled

a guest
May 19th, 2025
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. #################################
  2. # Animations #
  3. #################################
  4.  
  5. animations = true;
  6.  
  7. animations = (
  8. {
  9. match = "window_type = 'notification'";
  10. triggers = [ "close", "hide" ];
  11. preset = "slide-out";
  12. direction = "down";
  13. duration = 1.0;
  14. }
  15. );
  16.  
  17. #################################
  18. # Shadows #
  19. #################################
  20.  
  21. shadow = true;
  22. shadow-radius = 12;
  23. shadow-opacity = 0.3;
  24. shadow-offset-x = -7;
  25. shadow-offset-y = -7;
  26.  
  27. shadow-exclude = [
  28. "name = 'Notification'",
  29. "class_g = 'Conky'",
  30. "class_g ?= 'Notify-osd'",
  31. "class_g = 'Cairo-clock'",
  32. "class_g = 'Firefox-esr'",
  33. "_GTK_FRAME_EXTENTS@"
  34. ];
  35.  
  36. #################################
  37. # Fading #
  38. #################################
  39.  
  40. fading = true;
  41. fade-in-step = 0.025;
  42. fade-out-step = 0.025;
  43.  
  44. #################################
  45. # Transparency / Opacity #
  46. #################################
  47.  
  48. inactive-opacity = 0.8;
  49. frame-opacity = 0.7;
  50. inactive-opacity-override = false;
  51. active-opacity = 0.85;
  52.  
  53. focus-exclude = [ "class_g = 'Cairo-clock'" ];
  54.  
  55. opacity-rule = [
  56. "100:class_g = 'Brave-browser'",
  57. "100:class_g = 'vlc'",
  58. "100:class_g = 'TelegramDesktop'",
  59. "100:class_g = 'Firefox-esr'"
  60. ];
  61.  
  62. #################################
  63. # Corners #
  64. #################################
  65.  
  66. corner-radius = 0;
  67. rounded-corners-exclude = [
  68. "window_type = 'dock'",
  69. "window_type = 'desktop'"
  70. ];
  71.  
  72. #################################
  73. # Background-Blurring #
  74. #################################
  75.  
  76. blur: {
  77. method = "dual_kawase";
  78. strength = 5;
  79. background = false;
  80. background-frame = false;
  81. background-fixed = false;
  82. }
  83.  
  84. blur-background-exclude = [
  85. "window_type = 'dock'",
  86. "window_type = 'desktop'",
  87. "class_g = 'Firefox-esr'",
  88. "_GTK_FRAME_EXTENTS@"
  89. ];
  90.  
  91. #################################
  92. # General Settings #
  93. #################################
  94.  
  95. backend = "xrender";
  96. vsync = true;
  97.  
  98. mark-wmwin-focused = true;
  99. mark-ovredir-focused = true;
  100.  
  101. detect-rounded-corners = true;
  102. detect-client-opacity = true;
  103.  
  104. detect-transient = true;
  105. use-damage = true;
  106. log-level = "warn";
  107.  
  108. wintypes: {
  109. tooltip = { fade = true; shadow = true; opacity = 0.85; focus = true; full-shadow = false; };
  110. dock = { shadow = false; clip-shadow-above = true; fade = false; };
  111. dnd = { shadow = false; fade = false; };
  112. popup_menu = { opacity = 0.85; fade = false; };
  113. dropdown_menu = { opacity = 0.85; fade = false; };
  114. menu = { fade = false; };
  115. utility = { fade = false; };
  116. dialog = { fade = false; };
  117. };
  118.  
Advertisement
Add Comment
Please, Sign In to add comment