Update wizard script

This commit is contained in:
jayofelony
2024-03-04 20:40:04 +01:00
parent 6f57b66cf4
commit 255bbdbc08

View File

@ -234,7 +234,7 @@ if __name__ == '__main__':
"Be sure to check for the correct display type @ \n" "Be sure to check for the correct display type @ \n"
"https://github.com/jayofelony/pwnagotchi/blob/master/pwnagotchi/utils.py#L240-L431\n") "https://github.com/jayofelony/pwnagotchi/blob/master/pwnagotchi/utils.py#L240-L431\n")
if pwn_display_type != "": if pwn_display_type != "":
f.write("ui.display.type = \""+pwn_display_type+"\"\n") f.write("ui.display.type = \"%s\"\n" % pwn_display_type)
pwn_display_invert = input("Do you want to invert the display colors? [Y/N]\n\n" pwn_display_invert = input("Do you want to invert the display colors? [Y/N]\n\n"
"N = Black background\n" "N = Black background\n"
"Y = White background\n") "Y = White background\n")