11 lines
277 B
Lua
11 lines
277 B
Lua
-- Small command builders shared by keybindings and autostart.
|
|
local M = {}
|
|
|
|
-- Launch graphical applications through UWSM so they inherit the managed
|
|
-- Wayland session environment and systemd scope.
|
|
function M.uwsm(command)
|
|
return "uwsm-app -- " .. command
|
|
end
|
|
|
|
return M
|