Simple plugin to show data from Wall Of Flippers on Pwnagotchi's screen. Display total number of Flippers met and the name of the last Flipper that is online. When a new Flipper is met, shows a custom status message with the Flipper's name.
If Wall of Flippers is not running, it will still display the total number of Flippers met.
Before installing this plugin on your Pwnagotchi, you need to have Wall of Flippers installed. To install it, follow the installation steps on the Github's repository of my version of Wall of Flippers.
[!IMPORTANT] If you install the plugin using
pwnagotchi plugins
command, make sure to add alsowof_assets
directory to the directory where plugins are stored, otherwise the icon and other resources will not be rendered.
ssh pi@10.0.0.2
custom_plugins
directory where all custom plugins of your Pwnagotchi are stored:
cd /path/to/custom_plugins/directory
wget https://github.com/cyberartemio/wof-pwnagotchi-plugin/archive/main.zip
unzip main.zip &&
mv wof-pwnagotchi-plugin-main/wof.py . &&
mv wof-pwnagotchi-plugin-main/wof_assets .&&
rm -r wof-pwnagotchi-plugin-main main.zip
/etc/pwnagotchi/config.toml
) and add the following:
# Enable the plugin
main.plugins.wof.enabled = true
main.plugins.wof.icon = true
main.plugins.wof.icon_reverse = false
main.plugins.wof.position.x = 5 main.plugins.wof.position.y = 84
main.plugins.wof.wof_file = "/root/Wall-of-Flippers/Flipper.json"
main.plugins.wof.online_timespan = 30 # in seconds
6. Restart daemon service:
```sh
sudo systemctl restart pwnagotchi
Done! Now the plugin is installed and is working.
[!NOTE] If you don't specify any values for
wof.icon
,wof.icon_reverse
,wof.position.x
,wof.position.y
,wof.wof_file
andwof.online_timespan
, the plugin will use the following default values:
wof.icon
:true
wof.icon_reverse
:false
wof.position.x
:5
wof.position.y
:82
wof.wof_file
:/root/Wall-of-Flippers/Flipper.json
wof.online_timespan
:120
- 2 minutes
This plugin comes also with a web UI that shows all Flippers met with additional data. You can use it by opening http://10.0.0.2/plugins/wof
inside your browser (note: you need to be connected to your Pwnagotchi).
Inside the web UI you'll find:
wof
systemd daemonwof
systemd daemonHere you can find a preview of what the UI will look like:
If you need help or you want to suggest new ideas, you can open an issue here or you can join my Discord server using this invite.
If you want to contribute, you can fork the project and then open a pull request.