mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
picom: Avoid odd-looking shadows in Firefox
picom cannot and does not attempt to use the window geometry from the non-rectangular menu+friend windows that Firefox displays which causes a strange floating blur/shadow behind the menus. Avoid this by disabling both blur and shadows on those pop-ups until picom can handle it better. Signed-off-by: Joe Groocock <me@frebib.net>
This commit is contained in:
parent
6f1569b35d
commit
ece2eb878a
@ -15,8 +15,7 @@ shadow-exclude = [
|
||||
"class_g = 'slop'",
|
||||
"class_g = 'Conky'",
|
||||
"class_g ?= 'Notify-osd'",
|
||||
"class_g = 'Cairo-clock'",
|
||||
"class_g = 'firefox' && argb",
|
||||
"class_g = 'firefox' && argb && (window_type = 'utility' || window_type = 'popup_menu')",
|
||||
"name = 'Notification'",
|
||||
"name = 'cpt_frame_window'",
|
||||
"_GTK_FRAME_EXTENTS@:c"
|
||||
@ -49,10 +48,11 @@ blur-background-exclude = [
|
||||
"class_g = 'Onboard'",
|
||||
"class_g = 'slop'",
|
||||
"class_g = 'Polybar'",
|
||||
"class_g = 'firefox' && argb",
|
||||
"class_g = 'firefox' && argb && (window_type = 'utility' || window_type = 'popup_menu')",
|
||||
"window_type = 'dock'",
|
||||
"window_type = 'desktop'",
|
||||
"_GTK_FRAME_EXTENTS@:c"
|
||||
"_GTK_FRAME_EXTENTS@:c",
|
||||
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
|
||||
];
|
||||
|
||||
# Fading
|
||||
|
Loading…
Reference in New Issue
Block a user