my-config/awesome/config/user.lua

39 lines
1.5 KiB
Lua
Raw Permalink Normal View History

2024-08-20 13:20:26 +00:00
local awful = require('awful')
-- Specify user preferences for Awesome's behavior.
return {
-- Default modkey.
-- Usually, Mod4 is the key with a logo between Control and Alt. If you do not like
-- this or do not have such a key, I suggest you to remap Mod4 to another key using
-- xmodmap or other tools. However, you can use another modifier like Mod1, but it
-- may interact with others.
mod = 'Mod4',
-- Table of layouts to cover with awful.layout.inc, ORDER MATTERS, the first layout
-- in the table is your DEFAULT LAYOUT.
layouts = {
awful.layout.suit.tile.left,
awful.layout.suit.floating,
-- awful.layout.suit.tile,
-- awful.layout.suit.tile.bottom,
-- awful.layout.suit.tile.top,
awful.layout.suit.fair,
awful.layout.suit.fair.horizontal,
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
},
screens = {
{
tags = { '1: Main', '2: Dev', '3: Gaming', '4', '5' },
layouts = { awful.layout.suit.floating, awful.layout.suit.tile.left, awful.layout.suit.floating, awful.layout.suit.tile.left }
},
{
tags = { '1: Web', '2: Discord', '3: VPN', '4', '5' },
layouts = { awful.layout.suit.tile.left, awful.layout.suit.tile.left, awful.layout.suit.tile.left, awful.layout.suit.tile.left }
}
}
}