Advertisement
Guest User

tos

a guest
Oct 14th, 2023
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | None | 0 0
  1. os.loadAPI("p2")
  2. os.loadAPI("lg")
  3. local shell = _G.shell
  4. local function mainButton()
  5.   lg.setup("term")
  6.   lg.drawBT("menu",1,lg.getSize().x,lg.getSize().y,lg.getSize().y,colors.white,colors.black,"      O")
  7.   while true do
  8.     local event, button, x, y = os.pullEvent( "mouse_click" )
  9.     if (lg.isButton(x,y) == "menu") then
  10.       os.reboot()
  11.     end
  12.   end
  13.   lg.exit()
  14. end
  15. local namev = nil
  16. function sopen(names)
  17.   shell.run(names)
  18. end
  19. local function open()
  20.   name = namev
  21.   sopen(name)
  22. end
  23. function openFile(name)
  24.   namev = name
  25.   parallel.waitForAny(open,mainButton)
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement