Skip to content

Step 4 Customization

Jeroen Oudshoorn edited this page Dec 21, 2024 · 18 revisions

Customizing your Pwnagotchi

You might want to customize your Pwnagotchi to make it more personal. You can do this by changing the theme, adding plugins, or even creating your own plugins.

BT-Tethering

If you want to use your Pwnagotchi on the go, you can use a Bluetooth tethering connection. This way you can connect to the internet without needing a Wi-Fi connection. To do this enter the following commands while connected over SSH:

sudo bluetoothctl
scan on
# Wait for your phone to show up
pair <Your phone's MAC address>
trust <Your phone's MAC address>

Now you can enter the details into the configuration file config.toml under the main.plugins.bt-tether section. And enable the plugin by setting enabled = true. Either reboot the Pwnagotchi or restart the service using pwnkill.

[main.plugins.bt-tether]
enabled = true
phone = "" # android or ios
mac = "" # your phone's MAC address
ip = "" # 192.168.44.2-254 for android, 172.20.10.2-254 for ios

Previous: Configuration

Clone this wiki locally