diff --git a/files/.config/picom.conf b/files/.config/picom.conf index f56d017..cff0ace 100644 --- a/files/.config/picom.conf +++ b/files/.config/picom.conf @@ -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'" + ]; # }}} diff --git a/files/.config/qutebrowser/config.py b/files/.config/qutebrowser/config.py index 919b329..f7b7f73 100644 --- a/files/.config/qutebrowser/config.py +++ b/files/.config/qutebrowser/config.py @@ -28,6 +28,8 @@ config.bind("", "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"]