Advertisement
johnnymacm

minimal config.toml to configure pwnagotchi and 2.7in display using spotpear24inch config file

May 3rd, 2022
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. #minimal config.toml to configure pwnagotchi and 2.7in display using spotpear24inch config file
  2.  
  3. main.name = "pwnagotchi"
  4. main.lang = "en"
  5. main.custom_plugins = "/usr/local/share/pwnagotchi/custom-plugins/"
  6. main.whitelist = [
  7. "NCTAMSPAC",
  8. "HOMELAN",
  9. ]
  10. main.plugins.grid.enabled = true
  11. main.plugins.grid.report = true
  12. main.plugins.grid.exclude = [
  13. "NCTAMSPAC"
  14. ]
  15.  
  16. #bt-tether settings iphone, "E0:2B:96:DD:5E:09" #mobile Bluetooth MAC, iPhone
  17. main.plugins.bt-tether.enabled = true
  18. main.plugins.bt-tether.devices.ios-phone.enabled = true
  19. main.plugins.bt-tether.devices.ios-phone.search_order = 1
  20. # main.plugins.bt-tether.devices.ios-phone.mac = "E0:2B:96:DD:5E:09" #mobile Bluetooth MAC, iPhone
  21. # main.plugins.bt-tether.devices.ios-phone.ip = "172.20.10.6" #custom static IP for iPhone PAN
  22. main.plugins.bt-tether.devices.ios-phone.netmask = 24
  23. main.plugins.bt-tether.devices.ios-phone.interval = 1
  24. main.plugins.bt-tether.devices.ios-phone.scantime = 10
  25. main.plugins.bt-tether.devices.ios-phone.max_tries = 10
  26. main.plugins.bt-tether.devices.ios-phone.share_internet = true
  27. main.plugins.bt-tether.devices.ios-phone.priority = 1
  28.  
  29. #WebGui
  30. ui.web.enabled = true
  31. ui.web.address = "10.0.0.94"
  32. ui.web.username = "changeme"
  33. ui.web.password = "changeme"
  34. ui.web.port = 8080
  35. ui.web.origin = ""
  36. ui.web.on_frame = ""
  37.  
  38. #Display configuration
  39. ui.display.enabled = true
  40. ui.display.rotation = 180
  41. ui.display.type = "spotpear24inch"
  42. ui.display.color = "black"
  43.  
  44. #Reduce Writes to preserve SD Lifespan
  45. fs.memory.enabled = true
  46. fs.memory.mounts.log.enabled = true
  47. fs.memory.mounts.data.enabled = true
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement