mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 21:16:35 +05:30
10 lines
341 B
Lua
10 lines
341 B
Lua
-- Allows all signals to be connected and/or emitted.
|
|
return {
|
|
client = require(... .. ".client"),
|
|
-- NOTE: The `tag` file must be loaded before the `screen` one so that
|
|
-- the correct layouts defined in `config.user` are appended to the tags
|
|
-- upon creation.
|
|
tag = require(... .. ".tag"),
|
|
screen = require(... .. ".screen"),
|
|
}
|