blob: b1e627ca34ea58a6e90e0f87d9592e8eb0d7c691 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# This file is overwritten after every install/update
# Persistent local customizations
include starsector.local
# Persistent global definitions
include globals.local
# Starsector requires both bash and sh
ignore blacklist ${PATH}/bash
ignore blacklist ${PATH}/sh
# # Java games require read-write access to the ? folder to store data
# # This folder will need to be created manually by the user before first run
# # mkdir refuses to create it citing invalid characters
# Left here in case that one day changes
#mkdir ${HOME}/games/Starsector/?
whitelist-ro ${HOME}/games/Starsector
read-write ${HOME}/games/Starsector/?
read-write ${HOME}/games/Starsector/saves
read-write ${HOME}/games/Starsector/screenshots
include generic-java-game.inc
|