Main Page: Difference between revisions

From Off Grid Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
<syntaxhighlight lang="lua" line>
app = {
name = "LightMonitor",
state = "off",
icon = "Common/Apps/Icons/LightMonitor.png",
iconColor = { 0.729, 0.545, 0.686 },
onClick = function()
UI.ToggleLightMonitor()
end,
}
</syntaxhighlight>
<strong>MediaWiki has been installed.</strong>
<strong>MediaWiki has been installed.</strong>



Revision as of 10:21, 4 April 2017

app = {
	name = "LightMonitor",
	state = "off",
	icon = "Common/Apps/Icons/LightMonitor.png",
	iconColor = { 0.729, 0.545, 0.686 },
	
	onClick = function()
		UI.ToggleLightMonitor()
	end,

}

MediaWiki has been installed.

Consult the User's Guide for information on using the wiki software.

Getting started