awesomewm/rc.lua

93 lines
1.8 KiB
Lua
Raw Normal View History

2022-07-16 17:41:00 -07:00
-- AwesomeWM modules
2021-08-01 07:24:26 -07:00
gears = require("gears")
awful = require("awful")
naughty = require("naughty")
beautiful = require("beautiful")
menubar = require("menubar")
wibox = require("wibox")
require("awful.autofocus")
2022-07-16 17:41:00 -07:00
conf_dir = gears.filesystem.get_configuration_dir()
2021-08-01 07:24:26 -07:00
2022-07-16 17:41:00 -07:00
-- A "relative require" hack. Does the same thing as `require`,
-- But takes a relative path.
-- Called with req_rel(..., "module")
function req_rel(ddd, modname)
local parent_folder = (ddd):match("(.-)[^%.]+$")
return require(parent_folder .. modname)
end
2021-08-01 07:24:26 -07:00
-- Quick debug function
debug_message = function(msg)
naughty.notify({title = "Debug message:", text = tostring(msg)})
end
2022-07-16 17:41:00 -07:00
-- Order matters.
2021-08-01 07:24:26 -07:00
conf = require("conf")
beautiful.init(require("theme"))
2022-07-16 17:10:17 -07:00
core = require("core")
2022-07-16 17:41:00 -07:00
-- Load key bindings
local binds = require("binds")
local keys = binds.keys
local buttons = binds.buttons
-- Load modules
modules = {}
for k, v in ipairs({
"mpc",
2022-07-16 15:44:14 -07:00
"ibus",
2022-07-16 16:20:58 -07:00
"volume",
2022-07-16 17:18:27 -07:00
"launcher",
2022-07-16 17:41:00 -07:00
"simple_widgets",
"screenshot",
"i3lock"
}) do
modules[v] = require("modules." .. v)
-- If module defines keybinds, load keybinds.
if (modules[v]["keybinds"] ~= nil) then
keys = gears.table.join(
keys,
modules[v]["keybinds"]
)
end
end
-- Run all module init methods
for _, mod in ipairs(modules) do
if (mod["init"] ~= nil) then
mod["init"]()
end
end
2022-07-16 17:41:00 -07:00
-- Finalize keybinds
root.keys(keys)
root.buttons(buttons)
2021-08-01 07:24:26 -07:00
2022-06-14 07:52:02 -07:00
-- Autostart
for i, v in ipairs(conf.startup_commands) do
awful.spawn(v)
end
2021-08-01 07:24:26 -07:00
-- Enable hotkeys help widget for VIM and other apps
-- when client with a matching name is opened:
--require("awful.hotkeys_popup.keys")
2022-07-16 17:10:17 -07:00
core.start()
2021-08-01 07:24:26 -07:00
-- Check for errors
2022-07-16 17:41:00 -07:00
dofile(conf_dir .. "errors.lua")
2021-08-01 07:24:26 -07:00
2022-07-16 17:41:00 -07:00
menubar.utils.terminal = conf.terminal
2021-08-01 07:24:26 -07:00
-- Load client methods
awful.rules.rules = require("clients.rules")
2022-07-16 17:41:00 -07:00
dofile(conf_dir .. "clients/signals.lua")
2021-08-01 07:24:26 -07:00
require("clients.render")