├── .DEREK.yml ├── .editorconfig ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MANIFEST.in ├── Makefile ├── README.md ├── bin └── pwnagotchi ├── pwnagotchi ├── __init__.py ├── _version.py ├── agent.py ├── ai │ ├── __init__.py │ ├── epoch.py │ ├── featurizer.py │ ├── gym.py │ ├── parameter.py │ ├── reward.py │ ├── train.py │ └── utils.py ├── automata.py ├── bettercap.py ├── defaults.toml ├── fs │ └── __init__.py ├── grid.py ├── identity.py ├── locale │ ├── af │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── bg │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── ch │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── dk │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── el │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── ga │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── jp │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── mk │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── no │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── pt-BR │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── se │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── spa │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── tw │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ ├── ua │ │ └── LC_MESSAGES │ │ │ ├── voice.mo │ │ │ └── voice.po │ └── voice.pot ├── log.py ├── mesh │ ├── __init__.py │ ├── peer.py │ ├── utils.py │ └── wifi.py ├── plugins │ ├── __init__.py │ ├── cmd.py │ └── default │ │ ├── auto-update.py │ │ ├── bt-tether.py │ │ ├── example.py │ │ ├── gpio_buttons.py │ │ ├── gps.py │ │ ├── grid.py │ │ ├── led.py │ │ ├── logtail.py │ │ ├── memtemp.py │ │ ├── net-pos.py │ │ ├── onlinehashcrack.py │ │ ├── paw-gps.py │ │ ├── session-stats.py │ │ ├── switcher.py │ │ ├── ups_lite.py │ │ ├── watchdog.py │ │ ├── webcfg.py │ │ ├── webgpsmap.html │ │ ├── webgpsmap.py │ │ ├── wigle.py │ │ └── wpa-sec.py ├── ui │ ├── __init__.py │ ├── components.py │ ├── display.py │ ├── faces.py │ ├── fancygotchi.py │ ├── fonts.py │ ├── hw │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dfrobot1.py │ │ ├── dfrobot2.py │ │ ├── inky.py │ │ ├── lcdhat.py │ │ ├── libs │ │ │ ├── __init__.py │ │ │ ├── dfrobot │ │ │ │ ├── LICENSE │ │ │ │ ├── __init__.py │ │ │ │ ├── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dfrobot.py │ │ │ │ │ ├── dfrobot_epaper.py │ │ │ │ │ ├── gpio.py │ │ │ │ │ └── spi.py │ │ │ │ └── v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dfrobot.py │ │ │ │ │ ├── dfrobot_display │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── dfrobot_display.py │ │ │ │ │ ├── dfrobot_display.pyc │ │ │ │ │ ├── dfrobot_fonts.py │ │ │ │ │ ├── dfrobot_fonts.pyc │ │ │ │ │ ├── dfrobot_printString.py │ │ │ │ │ └── dfrobot_printString.pyc │ │ │ │ │ ├── dfrobot_epaper.py │ │ │ │ │ ├── display_extension │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── fonts_6_8.py │ │ │ │ │ ├── fonts_8_16.py │ │ │ │ │ ├── fonts_8_16.pyc │ │ │ │ │ ├── freetype_helper.py │ │ │ │ │ ├── freetype_helper.pyc │ │ │ │ │ ├── logo_colorbits1.bmp │ │ │ │ │ ├── logo_colorbits24.bmp │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── wqydkzh.ttf │ │ │ │ │ └── zkklt.ttf │ │ │ │ │ ├── gpio.py │ │ │ │ │ ├── i2c.py │ │ │ │ │ └── spi.py │ │ │ ├── fb │ │ │ │ ├── __init__.py │ │ │ │ └── fb.py │ │ │ ├── inkyphat │ │ │ │ ├── __init__.py │ │ │ │ ├── inkyfast.py │ │ │ │ └── inkyphatfast.py │ │ │ ├── papirus │ │ │ │ ├── __init__.py │ │ │ │ ├── epd.py │ │ │ │ └── lm75b.py │ │ │ └── waveshare │ │ │ │ ├── __init__.py │ │ │ │ ├── lcdhat │ │ │ │ ├── ST7789.py │ │ │ │ ├── ST7789.pyc │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── epd.py │ │ │ │ ├── lcdhat144 │ │ │ │ ├── LCD_1in44.py │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── epd.py │ │ │ │ ├── oledhat │ │ │ │ ├── SH1106.py │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── epd.py │ │ │ │ ├── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── epd2in13.py │ │ │ │ ├── epd2in13bc.py │ │ │ │ ├── epd2in13bcFAST.py │ │ │ │ └── epdconfig.py │ │ │ │ ├── v154inch │ │ │ │ ├── epd1in54b.py │ │ │ │ └── epdconfig.py │ │ │ │ ├── v2 │ │ │ │ ├── __init__.py │ │ │ │ └── waveshare.py │ │ │ │ ├── v213bc │ │ │ │ ├── epd2in13bc.py │ │ │ │ └── epdconfig.py │ │ │ │ ├── v213d │ │ │ │ ├── epd2in13d.py │ │ │ │ └── epdconfig.py │ │ │ │ ├── v213inb_v4 │ │ │ │ ├── epd2in13b_V4.py │ │ │ │ └── epdconfig.py │ │ │ │ ├── v27inch │ │ │ │ ├── __init__.py │ │ │ │ ├── epd2in7.py │ │ │ │ └── epdconfig.py │ │ │ │ ├── v29inch │ │ │ │ ├── epd2in9.py │ │ │ │ └── epdconfig.py │ │ │ │ └── v3 │ │ │ │ ├── epd2in13_V3.py │ │ │ │ └── epdconfig.py │ │ ├── oledhat.py │ │ ├── papirus.py │ │ ├── spotpear24inch.py │ │ ├── waveshare1.py │ │ ├── waveshare144lcd.py │ │ ├── waveshare154inch.py │ │ ├── waveshare2.py │ │ ├── waveshare213bc.py │ │ ├── waveshare213d.py │ │ ├── waveshare213inb_v4.py │ │ ├── waveshare27inch.py │ │ ├── waveshare29inch.py │ │ ├── waveshare3.py │ │ └── waveshare35lcd.py │ ├── state.py │ ├── themes │ │ ├── 128x128 │ │ │ ├── config-h.toml │ │ │ └── config-v.toml │ │ ├── 128x64 │ │ │ ├── config-h.toml │ │ │ └── config-v.toml │ │ ├── 200x200 │ │ │ ├── config-h.toml │ │ │ └── config-v.toml │ │ ├── 200x96 │ │ │ ├── config-h.toml │ │ │ └── config-v.toml │ │ ├── 212x104 │ │ │ ├── config-h.toml │ │ │ └── config-v.toml │ │ ├── 240x240 │ │ │ ├── config-h.toml │ │ │ └── config-v.toml │ │ ├── 250x122 │ │ │ ├── config-h.toml │ │ │ └── config-v.toml │ │ ├── 264x176 │ │ │ ├── config-h.toml │ │ │ └── config-v.toml │ │ ├── 296x128 │ │ │ ├── config-h.toml │ │ │ └── config-v.toml │ │ ├── 320x240 │ │ │ ├── config-h.toml │ │ │ └── config-v.toml │ │ ├── 480x320 │ │ │ ├── config-h.toml │ │ │ └── config-v.toml │ │ ├── img │ │ │ ├── angry.png │ │ │ ├── archive │ │ │ │ ├── angry.png │ │ │ │ ├── anonymous.png │ │ │ │ ├── avatar.png │ │ │ │ ├── awake.png │ │ │ │ ├── bored.png │ │ │ │ ├── broken.png │ │ │ │ ├── chelsea.png │ │ │ │ ├── cool.png │ │ │ │ ├── debug.png │ │ │ │ ├── excited.png │ │ │ │ ├── friend.png │ │ │ │ ├── grateful.png │ │ │ │ ├── happy.png │ │ │ │ ├── lonely.png │ │ │ │ ├── look_l.png │ │ │ │ ├── look_l_happy.png │ │ │ │ ├── look_r.png │ │ │ │ ├── look_r_happy.png │ │ │ │ ├── motivated.png │ │ │ │ ├── ncc_group.png │ │ │ │ ├── sad.png │ │ │ │ ├── sleep.png │ │ │ │ ├── sleep2.png │ │ │ │ ├── smart.png │ │ │ │ ├── upload.png │ │ │ │ ├── upload1.png │ │ │ │ ├── upload2.png │ │ │ │ └── wbg │ │ │ │ │ ├── angry.png │ │ │ │ │ ├── anonymous.png │ │ │ │ │ ├── avatar.png │ │ │ │ │ ├── awake.png │ │ │ │ │ ├── bored.png │ │ │ │ │ ├── broken.png │ │ │ │ │ ├── chelsea.png │ │ │ │ │ ├── cool.png │ │ │ │ │ ├── debug.png │ │ │ │ │ ├── demotivated.png │ │ │ │ │ ├── excited.png │ │ │ │ │ ├── friend.png │ │ │ │ │ ├── grateful.png │ │ │ │ │ ├── happy-.png │ │ │ │ │ ├── happy-r.png │ │ │ │ │ ├── happy.png │ │ │ │ │ ├── intense.png │ │ │ │ │ ├── lonely.png │ │ │ │ │ ├── look_l.png │ │ │ │ │ ├── look_l_happy.png │ │ │ │ │ ├── look_r.png │ │ │ │ │ ├── look_r_happy.png │ │ │ │ │ ├── motivated.png │ │ │ │ │ ├── ncc_group.png │ │ │ │ │ ├── pokebar_right.png │ │ │ │ │ ├── pokebar_xp_left.png │ │ │ │ │ ├── pwnachu_mini.png │ │ │ │ │ ├── sad.png │ │ │ │ │ ├── sleep.png │ │ │ │ │ ├── sleep2.png │ │ │ │ │ ├── smart.png │ │ │ │ │ ├── top_bar.png │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── upload1.png │ │ │ │ │ ├── upload2.png │ │ │ │ │ └── xp_bar_pkm.png │ │ │ ├── awake.png │ │ │ ├── bg-250x122.gif │ │ │ ├── bg-250x122.png │ │ │ ├── bored.png │ │ │ ├── broken.png │ │ │ ├── cool.png │ │ │ ├── debug.png │ │ │ ├── demotivated.png │ │ │ ├── excited.png │ │ │ ├── friend.png │ │ │ ├── grateful.png │ │ │ ├── happy.png │ │ │ ├── icons │ │ │ │ ├── favicon-bg.png │ │ │ │ ├── favicon-g.png │ │ │ │ ├── favicon-w.png │ │ │ │ └── favicon.png │ │ │ ├── intense.png │ │ │ ├── lonely.png │ │ │ ├── look_l.png │ │ │ ├── look_l_happy.png │ │ │ ├── look_r.png │ │ │ ├── look_r_happy.png │ │ │ ├── motivated.png │ │ │ ├── sad.png │ │ │ ├── sleep.png │ │ │ ├── sleep2.png │ │ │ ├── smart.png │ │ │ ├── upload.png │ │ │ ├── upload1.png │ │ │ └── upload2.png │ │ └── style.css │ ├── view.py │ └── web │ │ ├── __init__.py │ │ ├── handler.py │ │ ├── server.py │ │ ├── static │ │ ├── css │ │ │ ├── jquery.jqplot.css │ │ │ ├── jquery.jqplot.min.css │ │ │ └── style.css │ │ ├── images │ │ │ └── pwnagotchi.png │ │ └── js │ │ │ ├── jquery-1.12.4.min.js │ │ │ ├── jquery-qrcode-0.17.0.min.js │ │ │ ├── jquery.jqplot.js │ │ │ ├── jquery.jqplot.min.js │ │ │ ├── jquery.mobile │ │ │ ├── images │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── icons-png │ │ │ │ │ ├── action-black.png │ │ │ │ │ ├── action-white.png │ │ │ │ │ ├── alert-black.png │ │ │ │ │ ├── alert-white.png │ │ │ │ │ ├── arrow-d-black.png │ │ │ │ │ ├── arrow-d-l-black.png │ │ │ │ │ ├── arrow-d-l-white.png │ │ │ │ │ ├── arrow-d-r-black.png │ │ │ │ │ ├── arrow-d-r-white.png │ │ │ │ │ ├── arrow-d-white.png │ │ │ │ │ ├── arrow-l-black.png │ │ │ │ │ ├── arrow-l-white.png │ │ │ │ │ ├── arrow-r-black.png │ │ │ │ │ ├── arrow-r-white.png │ │ │ │ │ ├── arrow-u-black.png │ │ │ │ │ ├── arrow-u-l-black.png │ │ │ │ │ ├── arrow-u-l-white.png │ │ │ │ │ ├── arrow-u-r-black.png │ │ │ │ │ ├── arrow-u-r-white.png │ │ │ │ │ ├── arrow-u-white.png │ │ │ │ │ ├── audio-black.png │ │ │ │ │ ├── audio-white.png │ │ │ │ │ ├── back-black.png │ │ │ │ │ ├── back-white.png │ │ │ │ │ ├── bars-black.png │ │ │ │ │ ├── bars-white.png │ │ │ │ │ ├── bullets-black.png │ │ │ │ │ ├── bullets-white.png │ │ │ │ │ ├── calendar-black.png │ │ │ │ │ ├── calendar-white.png │ │ │ │ │ ├── camera-black.png │ │ │ │ │ ├── camera-white.png │ │ │ │ │ ├── carat-d-black.png │ │ │ │ │ ├── carat-d-white.png │ │ │ │ │ ├── carat-l-black.png │ │ │ │ │ ├── carat-l-white.png │ │ │ │ │ ├── carat-r-black.png │ │ │ │ │ ├── carat-r-white.png │ │ │ │ │ ├── carat-u-black.png │ │ │ │ │ ├── carat-u-white.png │ │ │ │ │ ├── check-black.png │ │ │ │ │ ├── check-white.png │ │ │ │ │ ├── clock-black.png │ │ │ │ │ ├── clock-white.png │ │ │ │ │ ├── cloud-black.png │ │ │ │ │ ├── cloud-white.png │ │ │ │ │ ├── comment-black.png │ │ │ │ │ ├── comment-white.png │ │ │ │ │ ├── delete-black.png │ │ │ │ │ ├── delete-white.png │ │ │ │ │ ├── edit-black.png │ │ │ │ │ ├── edit-white.png │ │ │ │ │ ├── eye-black.png │ │ │ │ │ ├── eye-white.png │ │ │ │ │ ├── forbidden-black.png │ │ │ │ │ ├── forbidden-white.png │ │ │ │ │ ├── forward-black.png │ │ │ │ │ ├── forward-white.png │ │ │ │ │ ├── gear-black.png │ │ │ │ │ ├── gear-white.png │ │ │ │ │ ├── grid-black.png │ │ │ │ │ ├── grid-white.png │ │ │ │ │ ├── heart-black.png │ │ │ │ │ ├── heart-white.png │ │ │ │ │ ├── home-black.png │ │ │ │ │ ├── home-white.png │ │ │ │ │ ├── info-black.png │ │ │ │ │ ├── info-white.png │ │ │ │ │ ├── location-black.png │ │ │ │ │ ├── location-white.png │ │ │ │ │ ├── lock-black.png │ │ │ │ │ ├── lock-white.png │ │ │ │ │ ├── mail-black.png │ │ │ │ │ ├── mail-white.png │ │ │ │ │ ├── minus-black.png │ │ │ │ │ ├── minus-white.png │ │ │ │ │ ├── navigation-black.png │ │ │ │ │ ├── navigation-white.png │ │ │ │ │ ├── phone-black.png │ │ │ │ │ ├── phone-white.png │ │ │ │ │ ├── plus-black.png │ │ │ │ │ ├── plus-white.png │ │ │ │ │ ├── power-black.png │ │ │ │ │ ├── power-white.png │ │ │ │ │ ├── recycle-black.png │ │ │ │ │ ├── recycle-white.png │ │ │ │ │ ├── refresh-black.png │ │ │ │ │ ├── refresh-white.png │ │ │ │ │ ├── search-black.png │ │ │ │ │ ├── search-white.png │ │ │ │ │ ├── shop-black.png │ │ │ │ │ ├── shop-white.png │ │ │ │ │ ├── star-black.png │ │ │ │ │ ├── star-white.png │ │ │ │ │ ├── tag-black.png │ │ │ │ │ ├── tag-white.png │ │ │ │ │ ├── user-black.png │ │ │ │ │ ├── user-white.png │ │ │ │ │ ├── video-black.png │ │ │ │ │ └── video-white.png │ │ │ │ └── icons-svg │ │ │ │ │ ├── action-black.svg │ │ │ │ │ ├── action-white.svg │ │ │ │ │ ├── alert-black.svg │ │ │ │ │ ├── alert-white.svg │ │ │ │ │ ├── arrow-d-black.svg │ │ │ │ │ ├── arrow-d-l-black.svg │ │ │ │ │ ├── arrow-d-l-white.svg │ │ │ │ │ ├── arrow-d-r-black.svg │ │ │ │ │ ├── arrow-d-r-white.svg │ │ │ │ │ ├── arrow-d-white.svg │ │ │ │ │ ├── arrow-l-black.svg │ │ │ │ │ ├── arrow-l-white.svg │ │ │ │ │ ├── arrow-r-black.svg │ │ │ │ │ ├── arrow-r-white.svg │ │ │ │ │ ├── arrow-u-black.svg │ │ │ │ │ ├── arrow-u-l-black.svg │ │ │ │ │ ├── arrow-u-l-white.svg │ │ │ │ │ ├── arrow-u-r-black.svg │ │ │ │ │ ├── arrow-u-r-white.svg │ │ │ │ │ ├── arrow-u-white.svg │ │ │ │ │ ├── audio-black.svg │ │ │ │ │ ├── audio-white.svg │ │ │ │ │ ├── back-black.svg │ │ │ │ │ ├── back-white.svg │ │ │ │ │ ├── bars-black.svg │ │ │ │ │ ├── bars-white.svg │ │ │ │ │ ├── bullets-black.svg │ │ │ │ │ ├── bullets-white.svg │ │ │ │ │ ├── calendar-black.svg │ │ │ │ │ ├── calendar-white.svg │ │ │ │ │ ├── camera-black.svg │ │ │ │ │ ├── camera-white.svg │ │ │ │ │ ├── carat-d-black.svg │ │ │ │ │ ├── carat-d-white.svg │ │ │ │ │ ├── carat-l-black.svg │ │ │ │ │ ├── carat-l-white.svg │ │ │ │ │ ├── carat-r-black.svg │ │ │ │ │ ├── carat-r-white.svg │ │ │ │ │ ├── carat-u-black.svg │ │ │ │ │ ├── carat-u-white.svg │ │ │ │ │ ├── check-black.svg │ │ │ │ │ ├── check-white.svg │ │ │ │ │ ├── clock-black.svg │ │ │ │ │ ├── clock-white.svg │ │ │ │ │ ├── cloud-black.svg │ │ │ │ │ ├── cloud-white.svg │ │ │ │ │ ├── comment-black.svg │ │ │ │ │ ├── comment-white.svg │ │ │ │ │ ├── delete-black.svg │ │ │ │ │ ├── delete-white.svg │ │ │ │ │ ├── edit-black.svg │ │ │ │ │ ├── edit-white.svg │ │ │ │ │ ├── eye-black.svg │ │ │ │ │ ├── eye-white.svg │ │ │ │ │ ├── forbidden-black.svg │ │ │ │ │ ├── forbidden-white.svg │ │ │ │ │ ├── forward-black.svg │ │ │ │ │ ├── forward-white.svg │ │ │ │ │ ├── gear-black.svg │ │ │ │ │ ├── gear-white.svg │ │ │ │ │ ├── grid-black.svg │ │ │ │ │ ├── grid-white.svg │ │ │ │ │ ├── heart-black.svg │ │ │ │ │ ├── heart-white.svg │ │ │ │ │ ├── home-black.svg │ │ │ │ │ ├── home-white.svg │ │ │ │ │ ├── info-black.svg │ │ │ │ │ ├── info-white.svg │ │ │ │ │ ├── location-black.svg │ │ │ │ │ ├── location-white.svg │ │ │ │ │ ├── lock-black.svg │ │ │ │ │ ├── lock-white.svg │ │ │ │ │ ├── mail-black.svg │ │ │ │ │ ├── mail-white.svg │ │ │ │ │ ├── minus-black.svg │ │ │ │ │ ├── minus-white.svg │ │ │ │ │ ├── navigation-black.svg │ │ │ │ │ ├── navigation-white.svg │ │ │ │ │ ├── phone-black.svg │ │ │ │ │ ├── phone-white.svg │ │ │ │ │ ├── plus-black.svg │ │ │ │ │ ├── plus-white.svg │ │ │ │ │ ├── power-black.svg │ │ │ │ │ ├── power-white.svg │ │ │ │ │ ├── recycle-black.svg │ │ │ │ │ ├── recycle-white.svg │ │ │ │ │ ├── refresh-black.svg │ │ │ │ │ ├── refresh-white.svg │ │ │ │ │ ├── search-black.svg │ │ │ │ │ ├── search-white.svg │ │ │ │ │ ├── shop-black.svg │ │ │ │ │ ├── shop-white.svg │ │ │ │ │ ├── star-black.svg │ │ │ │ │ ├── star-white.svg │ │ │ │ │ ├── tag-black.svg │ │ │ │ │ ├── tag-white.svg │ │ │ │ │ ├── user-black.svg │ │ │ │ │ ├── user-white.svg │ │ │ │ │ ├── video-black.svg │ │ │ │ │ └── video-white.svg │ │ │ ├── jquery.mobile-1.4.5.css │ │ │ ├── jquery.mobile-1.4.5.js │ │ │ ├── jquery.mobile-1.4.5.min.css │ │ │ ├── jquery.mobile-1.4.5.min.js │ │ │ ├── jquery.mobile-1.4.5.min.map │ │ │ ├── jquery.mobile.external-png-1.4.5.css │ │ │ ├── jquery.mobile.external-png-1.4.5.min.css │ │ │ ├── jquery.mobile.icons-1.4.5.css │ │ │ ├── jquery.mobile.icons-1.4.5.min.css │ │ │ ├── jquery.mobile.inline-png-1.4.5.css │ │ │ ├── jquery.mobile.inline-png-1.4.5.min.css │ │ │ ├── jquery.mobile.inline-svg-1.4.5.css │ │ │ ├── jquery.mobile.inline-svg-1.4.5.min.css │ │ │ ├── jquery.mobile.structure-1.4.5.css │ │ │ ├── jquery.mobile.structure-1.4.5.min.css │ │ │ ├── jquery.mobile.theme-1.4.5.css │ │ │ └── jquery.mobile.theme-1.4.5.min.css │ │ │ ├── jquery.timeago.js │ │ │ ├── plugins │ │ │ ├── jqplot.BezierCurveRenderer.js │ │ │ ├── jqplot.barRenderer.js │ │ │ ├── jqplot.blockRenderer.js │ │ │ ├── jqplot.bubbleRenderer.js │ │ │ ├── jqplot.canvasAxisLabelRenderer.js │ │ │ ├── jqplot.canvasAxisTickRenderer.js │ │ │ ├── jqplot.canvasOverlay.js │ │ │ ├── jqplot.canvasTextRenderer.js │ │ │ ├── jqplot.categoryAxisRenderer.js │ │ │ ├── jqplot.ciParser.js │ │ │ ├── jqplot.cursor.js │ │ │ ├── jqplot.dateAxisRenderer.js │ │ │ ├── jqplot.donutRenderer.js │ │ │ ├── jqplot.dragable.js │ │ │ ├── jqplot.enhancedLegendRenderer.js │ │ │ ├── jqplot.enhancedPieLegendRenderer.js │ │ │ ├── jqplot.funnelRenderer.js │ │ │ ├── jqplot.highlighter.js │ │ │ ├── jqplot.json2.js │ │ │ ├── jqplot.logAxisRenderer.js │ │ │ ├── jqplot.mekkoAxisRenderer.js │ │ │ ├── jqplot.mekkoRenderer.js │ │ │ ├── jqplot.meterGaugeRenderer.js │ │ │ ├── jqplot.mobile.js │ │ │ ├── jqplot.ohlcRenderer.js │ │ │ ├── jqplot.pieRenderer.js │ │ │ ├── jqplot.pointLabels.js │ │ │ ├── jqplot.pyramidAxisRenderer.js │ │ │ ├── jqplot.pyramidGridRenderer.js │ │ │ ├── jqplot.pyramidRenderer.js │ │ │ └── jqplot.trendline.js │ │ │ └── viewportHeight.js │ │ └── templates │ │ ├── base.html │ │ ├── fancygotchi.html │ │ ├── inbox.html │ │ ├── index.html │ │ ├── message.html │ │ ├── new_message.html │ │ ├── peers.html │ │ ├── plugins.html │ │ ├── profile.html │ │ └── status.html ├── utils.py └── voice.py ├── release.stork ├── requirements.txt ├── scripts ├── backup.sh ├── language.sh ├── linux_connection_share.sh ├── macos_connection_share.sh ├── openbsd_connection_share.sh ├── preview.py ├── pypi_upload.sh ├── restore.sh └── win_connection_share.ps1 └── setup.py /.DEREK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/.DEREK.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | evilsocket 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/README.md -------------------------------------------------------------------------------- /bin/pwnagotchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/bin/pwnagotchi -------------------------------------------------------------------------------- /pwnagotchi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/__init__.py -------------------------------------------------------------------------------- /pwnagotchi/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.5.5' 2 | -------------------------------------------------------------------------------- /pwnagotchi/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/agent.py -------------------------------------------------------------------------------- /pwnagotchi/ai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ai/__init__.py -------------------------------------------------------------------------------- /pwnagotchi/ai/epoch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ai/epoch.py -------------------------------------------------------------------------------- /pwnagotchi/ai/featurizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ai/featurizer.py -------------------------------------------------------------------------------- /pwnagotchi/ai/gym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ai/gym.py -------------------------------------------------------------------------------- /pwnagotchi/ai/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ai/parameter.py -------------------------------------------------------------------------------- /pwnagotchi/ai/reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ai/reward.py -------------------------------------------------------------------------------- /pwnagotchi/ai/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ai/train.py -------------------------------------------------------------------------------- /pwnagotchi/ai/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ai/utils.py -------------------------------------------------------------------------------- /pwnagotchi/automata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/automata.py -------------------------------------------------------------------------------- /pwnagotchi/bettercap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/bettercap.py -------------------------------------------------------------------------------- /pwnagotchi/defaults.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/defaults.toml -------------------------------------------------------------------------------- /pwnagotchi/fs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/fs/__init__.py -------------------------------------------------------------------------------- /pwnagotchi/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/grid.py -------------------------------------------------------------------------------- /pwnagotchi/identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/identity.py -------------------------------------------------------------------------------- /pwnagotchi/locale/af/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/af/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/af/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/af/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/bg/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/bg/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/bg/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/bg/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/ch/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/ch/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/ch/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/ch/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/cs/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/cs/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/cs/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/cs/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/de/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/de/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/de/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/de/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/dk/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/dk/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/dk/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/dk/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/el/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/el/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/el/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/el/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/es/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/es/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/es/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/es/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/fr/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/fr/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/fr/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/fr/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/ga/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/ga/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/ga/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/ga/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/hr/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/hr/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/hr/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/hr/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/hu/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/hu/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/hu/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/hu/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/it/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/it/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/it/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/it/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/jp/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/jp/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/jp/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/jp/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/mk/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/mk/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/mk/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/mk/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/nl/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/nl/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/nl/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/nl/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/no/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/no/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/no/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/no/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/pl/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/pl/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/pl/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/pl/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/pt-BR/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/pt-BR/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/pt-BR/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/pt-BR/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/pt/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/pt/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/pt/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/pt/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/ro/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/ro/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/ro/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/ro/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/ru/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/ru/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/ru/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/ru/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/se/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/se/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/se/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/se/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/sk/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/sk/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/sk/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/sk/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/spa/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/spa/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/spa/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/spa/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/tr/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/tr/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/tr/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/tr/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/tw/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/tw/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/tw/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/tw/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/ua/LC_MESSAGES/voice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/ua/LC_MESSAGES/voice.mo -------------------------------------------------------------------------------- /pwnagotchi/locale/ua/LC_MESSAGES/voice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/ua/LC_MESSAGES/voice.po -------------------------------------------------------------------------------- /pwnagotchi/locale/voice.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/locale/voice.pot -------------------------------------------------------------------------------- /pwnagotchi/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/log.py -------------------------------------------------------------------------------- /pwnagotchi/mesh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/mesh/peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/mesh/peer.py -------------------------------------------------------------------------------- /pwnagotchi/mesh/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/mesh/utils.py -------------------------------------------------------------------------------- /pwnagotchi/mesh/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/mesh/wifi.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/__init__.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/cmd.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/auto-update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/auto-update.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/bt-tether.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/bt-tether.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/example.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/gpio_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/gpio_buttons.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/gps.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/grid.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/led.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/logtail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/logtail.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/memtemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/memtemp.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/net-pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/net-pos.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/onlinehashcrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/onlinehashcrack.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/paw-gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/paw-gps.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/session-stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/session-stats.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/switcher.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/ups_lite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/ups_lite.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/watchdog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/watchdog.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/webcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/webcfg.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/webgpsmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/webgpsmap.html -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/webgpsmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/webgpsmap.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/wigle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/wigle.py -------------------------------------------------------------------------------- /pwnagotchi/plugins/default/wpa-sec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/plugins/default/wpa-sec.py -------------------------------------------------------------------------------- /pwnagotchi/ui/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pwnagotchi/ui/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/components.py -------------------------------------------------------------------------------- /pwnagotchi/ui/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/display.py -------------------------------------------------------------------------------- /pwnagotchi/ui/faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/faces.py -------------------------------------------------------------------------------- /pwnagotchi/ui/fancygotchi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/fancygotchi.py -------------------------------------------------------------------------------- /pwnagotchi/ui/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/fonts.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/__init__.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/base.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/dfrobot1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/dfrobot1.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/dfrobot2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/dfrobot2.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/inky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/inky.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/lcdhat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/lcdhat.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/LICENSE -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v1/dfrobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v1/dfrobot.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v1/dfrobot_epaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v1/dfrobot_epaper.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v1/gpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v1/gpio.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v1/spi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v1/spi.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/__init__.pyc -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_display.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_display.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_display.pyc -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_fonts.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_fonts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_fonts.pyc -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_printString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_printString.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_printString.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_display/dfrobot_printString.pyc -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_epaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/dfrobot_epaper.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/__init__.pyc -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/fonts_6_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/fonts_6_8.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/fonts_8_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/fonts_8_16.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/fonts_8_16.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/fonts_8_16.pyc -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/freetype_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/freetype_helper.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/freetype_helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/freetype_helper.pyc -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/logo_colorbits1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/logo_colorbits1.bmp -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/logo_colorbits24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/logo_colorbits24.bmp -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/readme.md -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/wqydkzh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/wqydkzh.ttf -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/zkklt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/display_extension/zkklt.ttf -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/gpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/gpio.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/i2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/i2c.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/dfrobot/v2/spi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/dfrobot/v2/spi.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/fb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/fb/fb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/fb/fb.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/inkyphat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/inkyphat/inkyfast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/inkyphat/inkyfast.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/inkyphat/inkyphatfast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/inkyphat/inkyphatfast.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/papirus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/papirus/epd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/papirus/epd.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/papirus/lm75b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/papirus/lm75b.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/lcdhat/ST7789.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/lcdhat/ST7789.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/lcdhat/ST7789.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/lcdhat/ST7789.pyc -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/lcdhat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/lcdhat/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/lcdhat/config.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/lcdhat/epd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/lcdhat/epd.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/lcdhat144/LCD_1in44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/lcdhat144/LCD_1in44.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/lcdhat144/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/lcdhat144/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/lcdhat144/config.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/lcdhat144/epd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/lcdhat144/epd.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/oledhat/SH1106.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/oledhat/SH1106.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/oledhat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/oledhat/config.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/oledhat/epd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/oledhat/epd.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bc.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bcFAST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v1/epd2in13bcFAST.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v1/epdconfig.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v154inch/epd1in54b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v154inch/epd1in54b.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v154inch/epdconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v154inch/epdconfig.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v2/waveshare.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v213bc/epd2in13bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v213bc/epd2in13bc.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v213bc/epdconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v213bc/epdconfig.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v213d/epd2in13d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v213d/epd2in13d.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v213d/epdconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v213d/epdconfig.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v213inb_v4/epd2in13b_V4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v213inb_v4/epd2in13b_V4.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v213inb_v4/epdconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v213inb_v4/epdconfig.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v27inch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v27inch/epd2in7.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v27inch/epdconfig.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v29inch/epd2in9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v29inch/epd2in9.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v29inch/epdconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v29inch/epdconfig.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v3/epd2in13_V3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v3/epd2in13_V3.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/libs/waveshare/v3/epdconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/libs/waveshare/v3/epdconfig.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/oledhat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/oledhat.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/papirus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/papirus.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/spotpear24inch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/spotpear24inch.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/waveshare1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/waveshare1.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/waveshare144lcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/waveshare144lcd.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/waveshare154inch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/waveshare154inch.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/waveshare2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/waveshare2.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/waveshare213bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/waveshare213bc.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/waveshare213d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/waveshare213d.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/waveshare213inb_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/waveshare213inb_v4.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/waveshare27inch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/waveshare27inch.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/waveshare29inch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/waveshare29inch.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/waveshare3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/waveshare3.py -------------------------------------------------------------------------------- /pwnagotchi/ui/hw/waveshare35lcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/hw/waveshare35lcd.py -------------------------------------------------------------------------------- /pwnagotchi/ui/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/state.py -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/128x128/config-h.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/128x128/config-h.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/128x128/config-v.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/128x128/config-v.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/128x64/config-h.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/128x64/config-h.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/128x64/config-v.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/128x64/config-v.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/200x200/config-h.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/200x200/config-h.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/200x200/config-v.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/200x200/config-v.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/200x96/config-h.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/200x96/config-h.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/200x96/config-v.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/200x96/config-v.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/212x104/config-h.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/212x104/config-h.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/212x104/config-v.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/212x104/config-v.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/240x240/config-h.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/240x240/config-h.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/240x240/config-v.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/240x240/config-v.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/250x122/config-h.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/250x122/config-h.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/250x122/config-v.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/250x122/config-v.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/264x176/config-h.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/264x176/config-h.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/264x176/config-v.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/264x176/config-v.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/296x128/config-h.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/296x128/config-h.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/296x128/config-v.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/296x128/config-v.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/320x240/config-h.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/320x240/config-h.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/320x240/config-v.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/320x240/config-v.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/480x320/config-h.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/480x320/config-h.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/480x320/config-v.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/480x320/config-v.toml -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/angry.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/angry.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/anonymous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/anonymous.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/avatar.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/awake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/awake.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/bored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/bored.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/broken.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/chelsea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/chelsea.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/cool.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/debug.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/excited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/excited.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/friend.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/grateful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/grateful.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/happy.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/lonely.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/lonely.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/look_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/look_l.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/look_l_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/look_l_happy.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/look_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/look_r.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/look_r_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/look_r_happy.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/motivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/motivated.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/ncc_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/ncc_group.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/sad.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/sleep.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/sleep2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/sleep2.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/smart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/smart.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/upload.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/upload1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/upload1.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/upload2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/upload2.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/angry.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/anonymous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/anonymous.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/avatar.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/awake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/awake.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/bored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/bored.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/broken.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/chelsea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/chelsea.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/cool.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/debug.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/demotivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/demotivated.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/excited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/excited.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/friend.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/grateful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/grateful.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/happy-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/happy-.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/happy-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/happy-r.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/happy.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/intense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/intense.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/lonely.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/lonely.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/look_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/look_l.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/look_l_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/look_l_happy.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/look_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/look_r.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/look_r_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/look_r_happy.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/motivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/motivated.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/ncc_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/ncc_group.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/pokebar_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/pokebar_right.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/pokebar_xp_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/pokebar_xp_left.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/pwnachu_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/pwnachu_mini.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/sad.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/sleep.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/sleep2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/sleep2.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/smart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/smart.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/top_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/top_bar.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/upload.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/upload1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/upload1.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/upload2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/upload2.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/archive/wbg/xp_bar_pkm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/archive/wbg/xp_bar_pkm.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/awake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/awake.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/bg-250x122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/bg-250x122.gif -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/bg-250x122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/bg-250x122.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/bored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/bored.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/broken.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/cool.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/debug.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/demotivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/demotivated.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/excited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/excited.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/friend.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/grateful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/grateful.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/happy.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/icons/favicon-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/icons/favicon-bg.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/icons/favicon-g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/icons/favicon-g.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/icons/favicon-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/icons/favicon-w.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/icons/favicon.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/intense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/intense.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/lonely.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/lonely.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/look_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/look_l.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/look_l_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/look_l_happy.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/look_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/look_r.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/look_r_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/look_r_happy.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/motivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/motivated.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/sad.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/sleep.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/sleep2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/sleep2.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/smart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/smart.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/upload.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/upload1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/upload1.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/img/upload2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/img/upload2.png -------------------------------------------------------------------------------- /pwnagotchi/ui/themes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/themes/style.css -------------------------------------------------------------------------------- /pwnagotchi/ui/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/view.py -------------------------------------------------------------------------------- /pwnagotchi/ui/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/__init__.py -------------------------------------------------------------------------------- /pwnagotchi/ui/web/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/handler.py -------------------------------------------------------------------------------- /pwnagotchi/ui/web/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/server.py -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/css/jquery.jqplot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/css/jquery.jqplot.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/css/jquery.jqplot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/css/jquery.jqplot.min.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/css/style.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/images/pwnagotchi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/images/pwnagotchi.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery-qrcode-0.17.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery-qrcode-0.17.0.min.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.jqplot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.jqplot.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.jqplot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.jqplot.min.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/ajax-loader.gif -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/action-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/action-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/action-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/action-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/alert-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/alert-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/alert-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/alert-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-l-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-l-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-r-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-r-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-d-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-l-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-l-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-r-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-r-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-l-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-l-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-r-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-r-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/arrow-u-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/audio-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/audio-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/audio-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/audio-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/back-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/back-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/back-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/back-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/bars-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/bars-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/bars-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/bars-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/bullets-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/bullets-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/bullets-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/bullets-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/calendar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/calendar-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/calendar-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/calendar-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/camera-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/camera-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/camera-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/camera-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-d-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-d-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-l-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-l-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-r-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-r-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-u-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/carat-u-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/check-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/check-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/check-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/check-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/clock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/clock-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/clock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/clock-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/cloud-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/cloud-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/cloud-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/cloud-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/comment-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/comment-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/comment-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/comment-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/delete-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/delete-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/delete-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/delete-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/edit-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/edit-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/edit-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/edit-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/eye-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/eye-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/eye-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/eye-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/forbidden-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/forbidden-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/forbidden-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/forbidden-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/forward-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/forward-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/forward-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/forward-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/gear-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/gear-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/gear-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/gear-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/grid-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/grid-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/grid-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/grid-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/heart-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/heart-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/heart-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/heart-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/home-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/home-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/home-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/home-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/info-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/info-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/info-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/info-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/location-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/location-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/location-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/location-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/lock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/lock-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/lock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/lock-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/mail-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/mail-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/mail-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/mail-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/minus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/minus-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/minus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/minus-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/navigation-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/navigation-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/navigation-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/navigation-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/phone-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/phone-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/phone-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/phone-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/plus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/plus-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/plus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/plus-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/power-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/power-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/power-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/power-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/recycle-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/recycle-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/recycle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/recycle-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/refresh-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/refresh-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/refresh-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/refresh-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/search-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/search-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/search-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/shop-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/shop-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/shop-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/shop-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/star-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/star-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/star-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/star-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/tag-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/tag-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/tag-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/tag-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/user-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/user-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/user-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/user-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/video-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/video-black.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/video-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-png/video-white.png -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/action-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/action-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/action-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/action-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/alert-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/alert-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/alert-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/alert-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-l-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-l-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-l-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-l-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-r-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-r-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-r-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-r-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-d-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-l-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-l-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-l-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-l-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-r-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-r-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-r-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-r-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-l-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-l-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-l-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-l-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-r-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-r-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-r-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-r-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/arrow-u-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/audio-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/audio-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/audio-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/audio-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/back-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/back-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/back-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/back-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/bars-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/bars-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/bars-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/bars-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/bullets-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/bullets-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/bullets-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/bullets-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/calendar-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/calendar-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/calendar-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/calendar-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/camera-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/camera-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/camera-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/camera-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-d-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-d-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-d-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-d-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-l-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-l-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-l-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-l-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-r-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-r-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-r-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-r-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-u-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-u-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-u-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/carat-u-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/check-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/check-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/check-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/check-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/clock-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/clock-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/clock-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/clock-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/cloud-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/cloud-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/cloud-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/cloud-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/comment-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/comment-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/comment-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/comment-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/delete-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/delete-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/delete-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/delete-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/edit-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/edit-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/edit-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/edit-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/eye-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/eye-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/eye-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/eye-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/forbidden-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/forbidden-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/forbidden-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/forbidden-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/forward-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/forward-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/forward-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/forward-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/gear-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/gear-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/gear-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/gear-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/grid-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/grid-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/grid-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/grid-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/heart-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/heart-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/heart-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/heart-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/home-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/home-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/home-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/home-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/info-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/info-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/info-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/info-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/location-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/location-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/location-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/location-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/lock-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/lock-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/lock-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/lock-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/mail-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/mail-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/mail-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/mail-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/minus-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/minus-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/minus-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/minus-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/navigation-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/navigation-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/navigation-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/navigation-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/phone-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/phone-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/phone-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/phone-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/plus-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/plus-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/plus-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/plus-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/power-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/power-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/power-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/power-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/recycle-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/recycle-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/recycle-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/recycle-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/refresh-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/refresh-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/refresh-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/refresh-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/search-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/search-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/search-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/search-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/shop-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/shop-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/shop-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/shop-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/star-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/star-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/star-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/star-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/tag-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/tag-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/tag-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/tag-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/user-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/user-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/user-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/user-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/video-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/video-black.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/video-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/images/icons-svg/video-white.svg -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile-1.4.5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile-1.4.5.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile-1.4.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile-1.4.5.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile-1.4.5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile-1.4.5.min.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile-1.4.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile-1.4.5.min.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile-1.4.5.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile-1.4.5.min.map -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.external-png-1.4.5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.external-png-1.4.5.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.external-png-1.4.5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.external-png-1.4.5.min.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.icons-1.4.5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.icons-1.4.5.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.icons-1.4.5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.icons-1.4.5.min.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.inline-png-1.4.5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.inline-png-1.4.5.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.inline-png-1.4.5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.inline-png-1.4.5.min.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.inline-svg-1.4.5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.inline-svg-1.4.5.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.inline-svg-1.4.5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.inline-svg-1.4.5.min.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.structure-1.4.5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.structure-1.4.5.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.structure-1.4.5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.structure-1.4.5.min.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.theme-1.4.5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.theme-1.4.5.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.theme-1.4.5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.mobile/jquery.mobile.theme-1.4.5.min.css -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/jquery.timeago.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.BezierCurveRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.BezierCurveRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.barRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.barRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.blockRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.blockRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.bubbleRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.bubbleRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.canvasAxisLabelRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.canvasAxisLabelRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.canvasAxisTickRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.canvasAxisTickRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.canvasOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.canvasOverlay.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.canvasTextRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.canvasTextRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.categoryAxisRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.categoryAxisRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.ciParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.ciParser.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.cursor.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.dateAxisRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.dateAxisRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.donutRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.donutRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.dragable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.dragable.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.enhancedLegendRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.enhancedLegendRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.enhancedPieLegendRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.enhancedPieLegendRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.funnelRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.funnelRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.highlighter.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.json2.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.logAxisRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.logAxisRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.mekkoAxisRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.mekkoAxisRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.mekkoRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.mekkoRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.meterGaugeRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.meterGaugeRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.mobile.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.ohlcRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.ohlcRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.pieRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.pieRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.pointLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.pointLabels.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.pyramidAxisRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.pyramidAxisRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.pyramidGridRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.pyramidGridRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.pyramidRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.pyramidRenderer.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/plugins/jqplot.trendline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/plugins/jqplot.trendline.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/static/js/viewportHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/static/js/viewportHeight.js -------------------------------------------------------------------------------- /pwnagotchi/ui/web/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/templates/base.html -------------------------------------------------------------------------------- /pwnagotchi/ui/web/templates/fancygotchi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/templates/fancygotchi.html -------------------------------------------------------------------------------- /pwnagotchi/ui/web/templates/inbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/templates/inbox.html -------------------------------------------------------------------------------- /pwnagotchi/ui/web/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/templates/index.html -------------------------------------------------------------------------------- /pwnagotchi/ui/web/templates/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/templates/message.html -------------------------------------------------------------------------------- /pwnagotchi/ui/web/templates/new_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/templates/new_message.html -------------------------------------------------------------------------------- /pwnagotchi/ui/web/templates/peers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/templates/peers.html -------------------------------------------------------------------------------- /pwnagotchi/ui/web/templates/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/templates/plugins.html -------------------------------------------------------------------------------- /pwnagotchi/ui/web/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/templates/profile.html -------------------------------------------------------------------------------- /pwnagotchi/ui/web/templates/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/ui/web/templates/status.html -------------------------------------------------------------------------------- /pwnagotchi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/utils.py -------------------------------------------------------------------------------- /pwnagotchi/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/pwnagotchi/voice.py -------------------------------------------------------------------------------- /release.stork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/release.stork -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/scripts/backup.sh -------------------------------------------------------------------------------- /scripts/language.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/scripts/language.sh -------------------------------------------------------------------------------- /scripts/linux_connection_share.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/scripts/linux_connection_share.sh -------------------------------------------------------------------------------- /scripts/macos_connection_share.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/scripts/macos_connection_share.sh -------------------------------------------------------------------------------- /scripts/openbsd_connection_share.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/scripts/openbsd_connection_share.sh -------------------------------------------------------------------------------- /scripts/preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/scripts/preview.py -------------------------------------------------------------------------------- /scripts/pypi_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/scripts/pypi_upload.sh -------------------------------------------------------------------------------- /scripts/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/scripts/restore.sh -------------------------------------------------------------------------------- /scripts/win_connection_share.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/scripts/win_connection_share.ps1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pwnagotchi-Unofficial/pwnagotchi-fancygotchi/HEAD/setup.py --------------------------------------------------------------------------------