

orbit.main.

Have fun creating extensions!
Please follow our guidelines when doing so.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.

return function(api, ext)
if not api.navkit then
warn("Unable to access Navkit, aborting.")
return
end
end

orbit.main.
return function(api, ext)
if not api.navkit then
warn("Unable to access Navkit, aborting.")
return
end
local window = ext.window
api.navkit.newButton(
"helloWorldButton", -- id
{
category = "orbit.main",
name = "Hello World", -- what is displayed on the button
icon = nil, -- optional, nil cus im lazy
layoutorder = 99, -- optional, put it as last
clone = false, -- optional, we don't want to clone our window
},
window
)
end

