my-config/awesome/signal/init.lua

10 lines
350 B
Lua
Raw Normal View History

2024-08-20 13:20:26 +00:00
-- 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')
}