Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- term.setBackgroundColor(colors.black)
- term.clear()
- w,h = term.getSize()
- print(w)
- print(h)
- paintutils.drawFilledBox(1,1,w,2,colors.lightGray)
- term.setCursorPos(2,1)
- term.write("= ALL SONGS"..string.rep(" ",w-14).."|")
- paintutils.drawFilledBox(1,3,w,6,colors.gray)
- term.setCursorPos(1,6)
- write("Available Offline"..string.rep(" ",6).."[ ]")
- paintutils.drawFilledBox(3,3,w-2,4,colors.green)
- term.setCursorPos(6,3)
- write("> SHUFFLE PLAY")
- term.setCursorPos(w/2,h/2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement