diff options
Diffstat (limited to '.config/awesome/misc/cfg.lua')
-rw-r--r-- | .config/awesome/misc/cfg.lua | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/.config/awesome/misc/cfg.lua b/.config/awesome/misc/cfg.lua index aceaa08..f62612f 100644 --- a/.config/awesome/misc/cfg.lua +++ b/.config/awesome/misc/cfg.lua @@ -3,21 +3,26 @@ local awful = require "awful" local cfg = { terminal = "wezterm", tags = { + -- home { layout = awful.layout.suit.floating, selected = true, }, + -- browser { + -- layout = awful.layout.suit.fair, layout = awful.layout.suit.floating, }, + -- messaging { layout = awful.layout.suit.tile.left, master_width_factor = 0.7, }, - { - layout = awful.layout.suit.tile.top, - master_width_factor = 0.2, - }, + + -- { + -- layout = awful.layout.suit.tile.top, + -- master_width_factor = 0.2, + -- }, { layout = awful.layout.suit.tile.right, -- master_width_factor = 0.7, |