mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-25 05:42:22 +00:00
change picom to only blur some stuff
This commit is contained in:
parent
901e9b9666
commit
3fac7d37ca
2 changed files with 16 additions and 1 deletions
|
@ -58,6 +58,7 @@ inactive-opacity-override = false;
|
|||
# Do not let dimness adjust based on window opacity.
|
||||
# inactive-dim-fixed = true;
|
||||
# Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
|
||||
|
||||
blur-background = true;
|
||||
blur-method = "dual_kawase";
|
||||
blur-strength = 10; # max 20
|
||||
|
@ -68,7 +69,19 @@ blur-size = 20;
|
|||
blur-background-fixed = false;
|
||||
blur-background-exclude = [
|
||||
"window_type = 'dock'",
|
||||
"window_type = 'desktop'"
|
||||
"window_type = 'desktop'",
|
||||
|
||||
"! name~=''",
|
||||
"name *= 'slop'",
|
||||
"name = 'Notification'",
|
||||
"name = 'xfce4-notifyd'",
|
||||
"name *= 'compton'",
|
||||
"name *= 'picom'",
|
||||
"class_g ?= 'Xfce4-notifyd'",
|
||||
"class_g ?= 'Xfce4-power-manager'",
|
||||
"_GTK_FRAME_EXTENTS@:c",
|
||||
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
|
||||
|
||||
];
|
||||
|
||||
# }}}
|
||||
|
|
|
@ -28,6 +28,8 @@ config.bind("<Alt-k>", "scroll-px 0 -40")
|
|||
c.tabs.show = "multiple"
|
||||
c.tabs.show_switching_delay = 1000
|
||||
|
||||
c.url.open_base_url = True
|
||||
|
||||
c.statusbar.hide = False
|
||||
c.fonts.statusbar = "default_size Iosevka"
|
||||
c.fonts.default_family = ["JetBrainsMono"]
|
||||
|
|
Loading…
Reference in a new issue