awesomewm/modules
mark de13fa6bcb Path change 2023-10-10 11:14:56 -07:00
..
backlight Disabled volume and brightness popups 2023-09-03 09:27:26 -07:00
battery changed battery widget 2023-08-26 18:05:21 -07:00
ibus Fixed mpc volume and title 2023-09-02 18:26:22 -07:00
keymap_popup Cleanup 2022-11-05 08:44:42 -07:00
launcher Added launcher icon config 2023-08-23 09:38:40 -07:00
lock Improved lock module 2022-11-04 10:23:41 -07:00
mpc Cleanup 2023-09-03 09:27:04 -07:00
picom Improved popups 2022-11-05 11:40:42 -07:00
screenshot Path change 2023-10-10 11:14:56 -07:00
simple_widgets Fixed textclock font 2023-08-22 22:00:17 -07:00
volume Disabled volume and brightness popups 2023-09-03 09:27:26 -07:00
README.md Added for_each_screen module value 2022-11-05 08:08:15 -07:00

README.md

Modules

Modules are parts of this configuration that can be disabled. Nearly all features in this config are defined by a module.

Enable / Disable Modules

See config-template.lua

Organization

Every directory in modules/ is a module. Modules cannot be in subdirectories.
Each module directory MUST have an init.lua, which returns a table. That table can contain anything, but a few keys are special:

keybinds
Defines keybinds the module provides. It is automatically loaded if the module is enabled.
This MUST be a table formed by awful.key(). See ibus or screenshot for examples.

init
Called once when awesome starts if defined. Takes no arguments.

for_each_screen(s)
Called for each screen at start if defined. Takes one argument, s, the screen.