improvements relating to xfce4-terminal

This commit is contained in:
Izaya 2023-01-02 09:27:25 +11:00
parent cb19c7f7d3
commit c2b4c5cc32
1 changed files with 11 additions and 2 deletions

13
rc.lua
View File

@ -63,7 +63,7 @@ for _, lvl in ipairs {"low", "normal", "critical"} do
end
modkey = "Mod4"
terminal = "kgx"
terminal = "xfce4-terminal"
launcher = "xfce4-appfinder"
-- {{{ Layout
@ -150,7 +150,16 @@ awful.rules.rules = {
raise = true,
placement = awful.placement.no_overlap + awful.placement.no_offscreen
}
}
},
-- Make terminals and mpv fill the whole screen rather than leave small gaps.
{
rule_any = {
class = {"xfce4-terminal", "Xfce4-terminal", "mpv"},
},
properties = {
size_hints_honor = false
}
},
}
-- }}}