├── README.md ├── backup-saves.sh ├── files ├── 8BitPro.cfg ├── LogitechGamepadF310.cfg └── emulationstation │ ├── es_input.cfg │ └── es_settings.cfg ├── get-new-images-for-roms.sh ├── inventory ├── raspberrypi-setup.yml ├── retropie-install.yml ├── retropie-syncroms.yml ├── start.sh ├── sync-games-to-pi.sh ├── templates └── wpa_supplicant.conf.j2 └── vars.yml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/README.md -------------------------------------------------------------------------------- /backup-saves.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/backup-saves.sh -------------------------------------------------------------------------------- /files/8BitPro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/files/8BitPro.cfg -------------------------------------------------------------------------------- /files/LogitechGamepadF310.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/files/LogitechGamepadF310.cfg -------------------------------------------------------------------------------- /files/emulationstation/es_input.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/files/emulationstation/es_input.cfg -------------------------------------------------------------------------------- /files/emulationstation/es_settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/files/emulationstation/es_settings.cfg -------------------------------------------------------------------------------- /get-new-images-for-roms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/get-new-images-for-roms.sh -------------------------------------------------------------------------------- /inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/inventory -------------------------------------------------------------------------------- /raspberrypi-setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/raspberrypi-setup.yml -------------------------------------------------------------------------------- /retropie-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/retropie-install.yml -------------------------------------------------------------------------------- /retropie-syncroms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/retropie-syncroms.yml -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/start.sh -------------------------------------------------------------------------------- /sync-games-to-pi.sh: -------------------------------------------------------------------------------- 1 | ansible-playbook -i inventory retropie-syncroms.yml 2 | -------------------------------------------------------------------------------- /templates/wpa_supplicant.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/templates/wpa_supplicant.conf.j2 -------------------------------------------------------------------------------- /vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmoisey/ansible-retropie/HEAD/vars.yml --------------------------------------------------------------------------------