awesomewm/modules/launcher/util.lua

10 lines
199 B
Lua
Raw Normal View History

2022-07-16 16:20:58 -07:00
local launcher = {}
local conf = configuration_dir .. "modules/launcher/launcher.rasi"
launcher.launcher = function()
awful.spawn("rofi -show drun -theme \"" .. conf .. "\"")
end
return launcher