Advertisement
zerinol

Untitled

Jul 9th, 2020
3,336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. shadow = true;
  2. shadow-radius = 12;
  3. shadow-offset-x = -10;
  4. shadow-offset-y = -10;
  5.  
  6. shadow-exclude = [
  7.   "name = 'Notification'",
  8.   "class_g = 'Conky'",
  9.   "class_g ?= 'Notify-osd'",
  10.   "class_g = 'Cairo-clock'",
  11.   "_GTK_FRAME_EXTENTS@:c"
  12. ];
  13.  
  14. fading = true
  15. fade-in-step = 0.03;
  16. fade-out-step = 0.03;
  17. inactive-opacity = 0.5;
  18. frame-opacity = 0.7;
  19. inactive-opacity-override = true
  20. active-opacity = 1.0
  21. inactive-dim = 0.8
  22. focus-exclude = [ "class_g = 'Cairo-clock'" ];
  23.  
  24. opacity-rule = [
  25.   "88:class_g = 'Emacs' && !focused",
  26.   "88:class_g = 'Alacritty' && focused",
  27.   "70:class_g = 'Alacritty' && !focused",
  28.   "88:class_g = 'Brave-browser' && !focused"
  29. ];
  30.  
  31. 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";
  32.  
  33. blur:
  34. {
  35.   method = "gaussian";
  36.   size = 10;
  37.   deviation = 5.0;
  38. };
  39.  
  40. blur-background-exclude = [
  41.   "window_type = 'dock'",
  42.   "window_type = 'desktop'",
  43.   "_GTK_FRAME_EXTENTS@:c"
  44. ];
  45.  
  46. backend = "glx";
  47. vsync = true
  48. mark-wmwin-focused = true;
  49. mark-ovredir-focused = true;
  50. detect-rounded-corners = true;
  51. detect-client-opacity = true;
  52. refresh-rate = 0
  53. detect-transient = true
  54. detect-client-leader = true
  55. use-damage = true
  56. log-level = "warn";
  57.  
  58. wintypes:
  59. {
  60.   tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
  61.   dock = { shadow = false; }
  62.   dnd = { shadow = false; }
  63.   popup_menu = { opacity = 0.8; }
  64.   dropdown_menu = { opacity = 0.8; }
  65. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement