This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # make a variety of standalone emulators work with a single folder | |
| # in retrodeck format (retrodeck sold separately) | |
| set -eou pipefail | |
| EMU_ROOT="$HOME/retrodeck" | |
| EDEN_SHARE="$HOME/.local/share/eden" | |
| RYUJINX_SHARE="$HOME/.config/Ryujinx" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| media | |
| */systeminfo.txt | |
| */metadata.txt | |
| /systems.txt | |
| /cloud | |
| /emulators | |
| !/xbox360/roms | |
| /xbox360 | |
| /model2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # syntax=docker/dockerfile:1 | |
| FROM alpine:3.18 | |
| RUN apk add restic openssh |