aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/awesome/rc.lua24
1 files changed, 15 insertions, 9 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index 0d04889..a913cfd 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -37,24 +37,30 @@ editor_cmd = terminal .. " -e " .. editor
-- However, you can use another modifier like Mod1, but it may interact with others.
modkey = "Mod4"
--- Table of layouts to cover with awful.layout.inc, order matters.
+-- table of layouts to cover with awful.layout.inc, order matters. (-git compatible)
tag.connect_signal("request::default_layouts", function()
awful.layout.append_default_layouts({
- -- awful.layout.suit.floating,
awful.layout.suit.tile,
- -- awful.layout.suit.tile.left,
- -- awful.layout.suit.tile.bottom,
- -- awful.layout.suit.tile.top,
+ awful.layout.suit.max,
+ -- awful.layout.suit.corner.nw,
-- awful.layout.suit.fair,
-- awful.layout.suit.fair.horizontal,
+ -- awful.layout.suit.floating,
+ -- awful.layout.suit.magnifier,
+ -- awful.layout.suit.max.fullscreen,
-- awful.layout.suit.spiral,
-- awful.layout.suit.spiral.dwindle,
- awful.layout.suit.max,
- -- awful.layout.suit.max.fullscreen,
- -- awful.layout.suit.magnifier,
- -- awful.layout.suit.corner.nw,
+ -- awful.layout.suit.tile.bottom,
+ -- awful.layout.suit.tile.left,
+ -- awful.layout.suit.tile.top,
})
end)
+
+-- active layout table (4.3.3 compatible)
+awful.layout.layouts = {
+ awful.layout.suit.tile,
+ awful.layout.suit.max,
+}
-- }}}
-- {{{ Sub-Menus