Advertisement
AKopyl

config

Mar 11th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. --[[
  2.     setup_menu() lets you configure the main menu
  3.     options can be added by adding another
  4.     "addChoice(string display_name, string absolute_path)"
  5.     the options will be displayed in the same order as here
  6. ]]
  7.  
  8. function setup_menu()
  9.     addChoice('terminal', '.term')
  10.     addChoice('filEx', 'filex')
  11.     addChoice('update', '.update')
  12.     addChoice('shutdown', '.shtdwn')
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement