From 786c199168b9f5a954e5253968da36463d5b7c71 Mon Sep 17 00:00:00 2001 From: Ale32bit Date: Fri, 25 Dec 2015 21:59:53 +0100 Subject: [PATCH] Create shell.lua --- src/apps/shell.lua | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/apps/shell.lua diff --git a/src/apps/shell.lua b/src/apps/shell.lua new file mode 100644 index 0000000..34824bf --- /dev/null +++ b/src/apps/shell.lua @@ -0,0 +1,5 @@ +term.setBackgroundColor(colors.black) +term.setTextColor(colors.white) +term.clear() +term.setCursorPos(1,1) +shell.run("/rom/programs/shell")