diff options
author | zachir <zachir@librem.one> | 2023-04-25 16:54:01 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-04-25 16:54:01 -0500 |
commit | 50a2a246ac8e1e84ecc3fc7c09d17cf50b31ca61 (patch) | |
tree | 40dba3e89f62975a5e82f9aeb0dc481d294377a1 /awesome/themes | |
parent | 20e54d48936d0e22a7335eede76bb4e79c55ce1a (diff) | |
parent | beeb0a5338711b05fd4a9615e95af791c29cc35e (diff) |
Merge branch 'master' of zachir.xyz:zachir/dotfiles
Diffstat (limited to 'awesome/themes')
-rw-r--r-- | awesome/themes/default/theme.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/awesome/themes/default/theme.lua b/awesome/themes/default/theme.lua index 0d8b7b8..e2903ed 100644 --- a/awesome/themes/default/theme.lua +++ b/awesome/themes/default/theme.lua @@ -138,8 +138,11 @@ 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", "VirtualBox Manager", "VirtualBox Machine" } -- list of class names that should not be swallowed +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_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.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 -- flash focus theme.flash_focus_start_opacity = 0.6 -- the starting opacity |