Advertisement
1lann

Clock Demo

Nov 15th, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.74 KB | None | 0 0
  1. shell.run("go.lua")
  2.  
  3. local function main()
  4.         local function clock()
  5.                 local w = term.getSize()
  6.                 term.setTextColor(colors.gray)
  7.  
  8.                 while true do
  9.                         term.setCursorPos(w - 8, 1)
  10.                         term.setBackgroundColor(colors.black)
  11.                         term.write("             ")
  12.                         term.setCursorPos(w - 8, 1)
  13.                         term.setBackgroundColor(colors.white)
  14.                         term.write(textutils.formatTime(os.time()))
  15.                         waitChannel("term_events", false, 0.2)
  16.                 end
  17.         end
  18.  
  19.         go(clock)
  20.         go(function() shell.run("/rom/programs/shell") end)
  21. end
  22.  
  23. runDispatcher(main)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement