aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-08-09 23:14:34 -0400
committerAlee <alee14498@gmail.com>2018-08-09 23:14:34 -0400
commita2edff6174ed208fe092b18fd9e2cea7b8ed7125 (patch)
treef67cc910756ed2557093e79c4c80dad2d45a94e8
parent66181f1e0faf5503cc46d5d997b2494dcc10a997 (diff)
downloadbits-UI-a2edff6174ed208fe092b18fd9e2cea7b8ed7125.tar.gz
bits-UI-a2edff6174ed208fe092b18fd9e2cea7b8ed7125.tar.bz2
bits-UI-a2edff6174ed208fe092b18fd9e2cea7b8ed7125.zip
Added the desktop (it's empty)
-rw-r--r--startup4
-rw-r--r--system/desktop.lua3
2 files changed, 6 insertions, 1 deletions
diff --git a/startup b/startup
index 0e50f10..dc21ea7 100644
--- a/startup
+++ b/startup
@@ -1,8 +1,10 @@
-- bits-UI: An operating system for ComputerCraft. Licensed with GPL-3.0.
local version = "1.0 Alpha 1"
+local desktop = "/system/desktop.lua"
term.clear()
term.setCursorPos(1,1)
print("Starting up bits-UI ".. version .."...")
-sleep(3) \ No newline at end of file
+sleep(3)
+shell.run(desktop) \ No newline at end of file
diff --git a/system/desktop.lua b/system/desktop.lua
new file mode 100644
index 0000000..5136c71
--- /dev/null
+++ b/system/desktop.lua
@@ -0,0 +1,3 @@
+term.clear()
+term.setCursorPos(1,1)
+print("Welcome to the desktop where nothing happens... Yet!") \ No newline at end of file