11 lines
226 B
Lua
11 lines
226 B
Lua
local function exit_submap()
|
|
hl.dispatch(hl.dsp.submap("reset"))
|
|
end
|
|
|
|
hl.define_submap("launch", function()
|
|
hl.bind("l", function()
|
|
hl.dispatch(hl.dsp.exec_cmd("librewolf"))
|
|
exit_submap()
|
|
end)
|
|
end)
|