Invert Your Pwnagotchi Screen Colors​

Invert Your Pwnagotchi Screen Colors

1. SSH Connect to your Pwnagotchi device.

Not sure how to connect to your pwnagotchi?
Follow our connection guide HERE!

2. Enter this command to edit the file holding the color values:

sudo nano /usr/local/lib/python3.7/dist-packages/pwnagotchi/ui/view.py

3. Locate the White and Black Values

Use your arrow down key ↓ to navigate to until you find the values for white and black.

CAUTION: DO NOT ADJUST ANY OTHER VALUES.

WHITE = 0xff 
BLACK = 0x00

4. Swap the values for white & black.

Enter the values below using your keyboard.
These are zeros and not  the letter o.

WHITE = 0x00
BLACK = 0xff

5. Save & Exit

  • Now enter the key combo for Exit on a PC its Control+X.
  • Then you will be prompted to save by selecting the letter Y to save or N to discard your changes.
  • Then press the enter key to confirm file name ( no change is needed).

5. Save & Reboot

Now your screen colors will be inverted, enjoy! 

Other Helpful Information

Reverse Screen Inversion: Follow the instructions back and reverse the color values:
White = ff
Black = 00

Scroll to Top