2024-02-19 19:41:33 -08:00
|
|
|
local awful = require("awful")
|
|
|
|
local bling = require("lib.bling")
|
|
|
|
local machi = require("lib.layout-machi")
|
2024-02-18 20:26:15 -08:00
|
|
|
|
|
|
|
-- Custom Layouts
|
|
|
|
local mstab = bling.layout.mstab
|
|
|
|
local centered = bling.layout.centered
|
|
|
|
local equal = bling.layout.equalarea
|
|
|
|
local deck = bling.layout.deck
|
2024-02-16 21:08:00 -08:00
|
|
|
|
|
|
|
machi.editor.nested_layouts = {
|
2024-02-19 19:41:33 -08:00
|
|
|
["0"] = deck,
|
|
|
|
["1"] = awful.layout.suit.spiral,
|
|
|
|
["2"] = awful.layout.suit.fair,
|
|
|
|
["3"] = awful.layout.suit.fair.horizontal,
|
2024-02-16 21:08:00 -08:00
|
|
|
}
|
2024-02-15 21:17:39 -08:00
|
|
|
|
|
|
|
-- Table of layouts to cover with awful.layout.inc, order matters.
|
2024-02-20 19:13:52 -08:00
|
|
|
awful.layout.append_default_layouts({
|
2024-02-19 19:41:33 -08:00
|
|
|
awful.layout.suit.tile,
|
|
|
|
awful.layout.suit.spiral.dwindle,
|
|
|
|
awful.layout.suit.floating,
|
|
|
|
awful.layout.suit.max,
|
|
|
|
centered,
|
|
|
|
mstab,
|
|
|
|
equal,
|
|
|
|
machi.default_layout,
|
2024-02-20 19:13:52 -08:00
|
|
|
})
|
2024-02-15 21:17:39 -08:00
|
|
|
|
2024-02-19 19:41:33 -08:00
|
|
|
client.connect_signal("manage", function(c)
|
|
|
|
if awesome.startup and not c.size_hints.user_position and not c.size_hints.program_position then
|
|
|
|
-- Prevent clients from being unreachable after screen count changes.
|
|
|
|
awful.placement.no_offscreen(c)
|
|
|
|
end
|
|
|
|
end)
|