awesomewm/modules/lock/init.lua

18 lines
263 B
Lua
Raw Normal View History

2022-07-16 17:41:00 -07:00
return {
keybinds = gears.table.join(
2022-07-17 20:29:08 -07:00
awful.key( {"Mod4"}, "l",
2022-07-16 17:41:00 -07:00
function ()
2022-11-04 10:23:41 -07:00
awful.spawn(
conf_dir .. "modules/lock/" .. config.lock.type .. ".bash",
false
)
2022-07-16 17:41:00 -07:00
end,
{
description = "Lock screen",
group = "System"
}
)
)
}