16 lines
208 B
Lua
16 lines
208 B
Lua
|
local launcher = req_rel(..., "util")
|
||
|
|
||
|
return gears.table.join(
|
||
|
awful.key( {"Mod4"}, "Tab",
|
||
|
function ()
|
||
|
launcher.launcher()
|
||
|
end,
|
||
|
|
||
|
{
|
||
|
description = "Open Launcher",
|
||
|
group = "Launcher"
|
||
|
}
|
||
|
)
|
||
|
)
|
||
|
|