Files
OpenSpace/data/assets/dashboard/date.asset
2021-04-28 19:19:51 +02:00

14 lines
267 B
Plaintext

local item = {
Type = "DashboardItemDate",
Identifier = "Date",
GuiName = "Date"
}
asset.onInitialize(function()
openspace.dashboard.addDashboardItem(item)
end)
asset.onDeinitialize(function()
openspace.dashboard.removeDashboardItem(item.Identifier)
end)