org.zdoom.GZDoom/README.md

40 lines
1.3 KiB
Markdown
Raw Normal View History

2021-12-10 18:14:47 +00:00
# GZDoom Flatpak edition
## Installation of game-data
2019-09-09 22:52:23 +00:00
* Copy any commercial iwad into the folder `~/.var/app/org.zdoom.GZDoom/.config/gzdoom/`
* Optionally, configure the `~/.var/app/org.zdoom.GZDoom/.config/gzdoom/gzdoom.ini` file to load other directories
2019-09-09 22:52:23 +00:00
## Run with custom wads
2021-12-10 18:14:47 +00:00
Just as with the stand-alone GZDoom, you can pass commands through using the command line. If you want to play custom wads, you can add them to a sub-directory of `/gzdoom/` and then you can directly access then from the terminal:
2019-09-09 22:52:23 +00:00
```
flatpak run org.zdoom.GZDoom -file ~/.var/app/org.zdoom.GZDoom/.config/gzdoom/pwads/PL2.WAD
```
2021-12-10 18:14:47 +00:00
```
cd ~/.var/app/org.zdoom.GZDoom/.config/gzdoom/pwads/
2019-09-09 22:52:23 +00:00
flatpak run org.zdoom.GZDoom -file ./PL2.WAD
```
For more info, see:
2021-12-10 18:14:47 +00:00
2019-09-09 22:52:23 +00:00
* https://zdoom.org/wiki/Command_line_parameters
* https://zdoom.org/wiki/Installation_and_execution_of_ZDoom
2021-12-10 18:14:47 +00:00
## Accessing files
If you want to access wads in different locations, you might have to adjust the [Flatpak sandboxing permissions](http://docs.flatpak.org/en/latest/sandbox-permissions.html).
### GUI
You can use Flatseal to visually manage your permissions:
https://flathub.org/apps/details/com.github.tchx84.Flatseal
### Terminal
You can easily do that like this:
2019-09-09 22:52:23 +00:00
```
flatpak override org.zdoom.GZDoom --filesystem=/OTHER/LOCATION/WITH/WADS --user
```