Advertisement
guitarplayer616

CC spotify

Jun 9th, 2015
349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. term.setBackgroundColor(colors.black)
  2. term.clear()
  3. w,h = term.getSize()
  4. print(w)
  5. print(h)
  6.  
  7. paintutils.drawFilledBox(1,1,w,2,colors.lightGray)
  8. term.setCursorPos(2,1)
  9. term.write("=  ALL SONGS"..string.rep(" ",w-14).."|")
  10. paintutils.drawFilledBox(1,3,w,6,colors.gray)
  11. term.setCursorPos(1,6)
  12. write("Available Offline"..string.rep(" ",6).."[ ]")
  13. paintutils.drawFilledBox(3,3,w-2,4,colors.green)
  14. term.setCursorPos(6,3)
  15. write("> SHUFFLE PLAY")
  16. term.setCursorPos(w/2,h/2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement