mirror of
https://github.com/tuxdotrs/tnvim.git
synced 2025-07-09 06:26:35 +05:30
21 lines
778 B
Lua
21 lines
778 B
Lua
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",
|
|
-- Each screen has its own tag table. You can just define one and append it to all
|
|
-- screens (default behavior).
|
|
tags = { "1", "2", "3", "4" },
|
|
-- 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,
|
|
awful.layout.suit.floating,
|
|
},
|
|
}
|