MaximumFrank

params

Mar 25th, 2016
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. --set paths
  2. rootPath = "/"
  3. prgPath = rootPath .. "program_files/"
  4. osFilesPath = rootPath .. "os_files/"
  5. sysPath = osFilesPath .. "sys/"
  6. usrPath = osFilesPath .. "usr/"
  7. regPath = sysPath .. "reg/"
  8. funcPath = sysPath .. "funcs/"
  9. restPath = sysPath .. "recovery/recovery_files/"
  10.  
  11. --set locale
  12. locale = "US"
  13.  
  14. --color themes
  15. --if color is supported
  16. tbColMain = colors.lightBlue
  17. tbxColMain = colors.yellow
  18. txColMain = colors.black
  19. stxColMain = colors.blue
  20. bgCol = colors.black
  21.  
  22. --if color is not supported
  23. tbMain = colors.gray
  24. txMain = colors.black
  25. stxMain = colors.lightGray
  26.  
  27. --debugging stuffs
  28. --default state for OS
  29. crash = 1
  30. update = 0
  31.  
  32. function debugger()
  33. if crash == 1 then
  34. --debug.start()
  35. end
  36. end
Add Comment
Please, Sign In to add comment