aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome/rc-stable.lua
diff options
context:
space:
mode:
authorBlista Kanjo2023-08-22 13:23:44 -0400
committerBlista Kanjo2023-08-22 13:23:44 -0400
commitfd20315fccd46149cfddbed476a082b5b1893ebe (patch)
treeec7e00e4ab78584eec49e1641a3599152eaf88d5 /.config/awesome/rc-stable.lua
parent781c466d0de30fe252f2c58e556133d79c3b1b13 (diff)
refactor: align the stable and `-git` rc.lua files
Diffstat (limited to '.config/awesome/rc-stable.lua')
-rw-r--r--.config/awesome/rc-stable.lua30
1 files changed, 11 insertions, 19 deletions
diff --git a/.config/awesome/rc-stable.lua b/.config/awesome/rc-stable.lua
index e0353b2..bf07965 100644
--- a/.config/awesome/rc-stable.lua
+++ b/.config/awesome/rc-stable.lua
@@ -24,28 +24,20 @@ editor_cmd = terminal .. " -x " .. editor
modkey = "Mod4"
-- 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.tile,
- 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.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,
+ -- 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.tile.bottom,
+ -- awful.layout.suit.tile.left,
+ -- awful.layout.suit.tile.top,
}
-- }}}