37 lines
979 B
HTML
37 lines
979 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>How To Install Applications Onto DremJS</title>
|
|
</head>
|
|
<style type="text/css">
|
|
code { background-color: gray; color: white; }
|
|
</style>
|
|
<body>
|
|
<h1>
|
|
How to Install Applications onto DremJS
|
|
</h1>
|
|
<h2>
|
|
Step 1
|
|
</h2>
|
|
<p>
|
|
Make a directory inside the "apps" directory and copy the program files to it
|
|
</p>
|
|
<h2>
|
|
Step 2
|
|
</h2>
|
|
<p>
|
|
Go to the index.html file on the root of the OS and go to the <code>ls</code> block. Insert anywhere within it:
|
|
</p>
|
|
<br />
|
|
<div class="big_block">
|
|
<a href="apps/appDirHere/index.html"><code>
|
|
App Name Here
|
|
</code>
|
|
</a>
|
|
</div>
|
|
<p>
|
|
Thats it! The program will appear in the Start menu and should start to work.
|
|
</p>
|
|
</body>
|
|
</html>
|