mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-17 22:55:38 +00:00
Add Steam documentation
This commit is contained in:
parent
dda60ab869
commit
98418d4ba2
29
SYSTEMS.md
29
SYSTEMS.md
|
@ -181,3 +181,32 @@ Requires a [Nintendo GameBoy Advance Core](http://wiki.libretro.com/index.php?ti
|
|||
<theme>gba</theme>
|
||||
</system>
|
||||
```
|
||||
|
||||
## [Steam](http://store.steampowered.com)
|
||||
|
||||
1. Create a folder at `~/.emulationstation/steam`
|
||||
```
|
||||
mkdir -p ~/.emulationstation/steam
|
||||
```
|
||||
2. Add text files for each Steam game you would like to have available through
|
||||
EmulationStation where:
|
||||
* The file name represents the game's name
|
||||
* The contents of the file represents the Steam application ID (found from the
|
||||
game's Steam store page)
|
||||
|
||||
```
|
||||
cd ~/.emulationstation/steam
|
||||
echo "250900" >> "The Binding of Isaac: Rebirth.txt"
|
||||
```
|
||||
|
||||
``` xml
|
||||
<system>
|
||||
<name>steam</name>
|
||||
<fullname>Steam</fullname>
|
||||
<path>~/.emulationstation/steam</path>
|
||||
<extension>.txt</extension>
|
||||
<command>steam steam://rungameid/$(tail %ROM%)</command>
|
||||
<platform>pc</platform>
|
||||
<theme>steam</theme>
|
||||
</system>
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue