Added launcher module
parent
a4f80add9e
commit
13b39f0953
|
@ -8,7 +8,7 @@ local desktop = {
|
|||
keymap = modules.ibus.widgets.ibus,
|
||||
volume = modules.volume.widgets.volume,
|
||||
tagindicator = require("desktop.widgets.tagindicator"),
|
||||
launcher = require("desktop.widgets.launcher"),
|
||||
launcher = modules.launcher.widgets.launcher,
|
||||
shortcut = require("desktop.widgets.shortcut"),
|
||||
|
||||
space = function(size)
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
widgets = {
|
||||
launcher = require("modules.launcher.widget").widget
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
local launcher = {}
|
||||
|
||||
local conf = configuration_dir .. "modules/launcher/launcher.rasi"
|
||||
|
||||
launcher.launcher = function()
|
||||
awful.spawn("rofi -show drun -theme \"" .. conf .. "\"")
|
||||
end
|
||||
|
||||
return launcher
|
|
@ -1,3 +1,4 @@
|
|||
local launcher = req_rel(..., "util")
|
||||
local widget = {}
|
||||
|
||||
|
||||
|
@ -42,8 +43,8 @@ end)
|
|||
widget.widget:connect_signal("button::press",
|
||||
function(_, _, _, button, mods)
|
||||
if (button == 1) then
|
||||
bin.rofi.launcher()
|
||||
launcher.launcher()
|
||||
end
|
||||
end
|
||||
)
|
||||
return widget.widget
|
||||
return widget
|
Loading…
Reference in New Issue