diff options
author | zachir <zachir@librem.one> | 2023-04-26 19:00:57 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-04-26 19:00:57 -0500 |
commit | 2943f6bdb61310f8160267b5714c60a64021885d (patch) | |
tree | cc74f708f5b9d1b58f0d85075160da5378750d0d | |
parent | 6898f2fca2a64a262866ef70b432641bb8d1548c (diff) |
dont swallow Torpedo Wall Of Sound (causes issues with menus)
-rw-r--r-- | awesome/themes/default/theme.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awesome/themes/default/theme.lua b/awesome/themes/default/theme.lua index e2903ed..8fb3aef 100644 --- a/awesome/themes/default/theme.lua +++ b/awesome/themes/default/theme.lua @@ -138,9 +138,9 @@ You might just want to copy that whole part into your theme.lua and start adjust --]] -- LuaFormatter off -- window swallowing -theme.dont_swallow_classname_list = { "firefox", "Gimp", "Lutris", "REAPER", "VirtualBox Manager", "VirtualBox Machine", "xviix64.exe" } -- list of class names that should not be swallowed +theme.dont_swallow_classname_list = { "firefox", "Gimp", "Lutris", "REAPER", "VirtualBox Manager", "VirtualBox Machine", "xviix64.exe", "Torpedo Wall Of Sound (GUI)" } -- list of class names that should not be swallowed theme.dont_swallow_filter_activated = true -- whether the filter above should be active -theme.parent_filter_list = {"firefox", "Gimp", "Lutris", "REAPER", "obs", "LibreWolf"} -- class names list of parents that should not be swallowed +theme.parent_filter_list = { "firefox", "Gimp", "Lutris", "REAPER", "obs", "LibreWolf", "xviix64.exe", "Torpedo Wall Of Sound (GUI)" } -- class names list of parents that should not be swallowed theme.child_filter_list = { "Dragon", "REAPER" } -- class names list that should not swallow their parents theme.swallowing_filter = true -- whether the filters above should be active |