diff options
author | TerminalHash | 2023-05-27 17:38:59 +0300 |
---|---|---|
committer | TerminalHash | 2023-05-27 17:38:59 +0300 |
commit | 7b1f2da8e1807272f8e298a45ea77b6e6e216c29 (patch) | |
tree | 07b8689d71ec7c2d3efb2bd36b88ca54ac6b3252 /Doom2DF_E | |
parent | 03b6fb8eea818fd22a3331425081e5c41259e03e (diff) | |
download | aur-7b1f2da8e1807272f8e298a45ea77b6e6e216c29.tar.gz |
update script
Diffstat (limited to 'Doom2DF_E')
-rwxr-xr-x | Doom2DF_E | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Doom2DF_E b/Doom2DF_E index 9df9b61c30f5..5c534287450d 100755 --- a/Doom2DF_E +++ b/Doom2DF_E @@ -2,4 +2,10 @@ set -e -exec editor --game-wad /usr/share/doom2df/data/game.wad --editor-wad /usr/share/doom2df/data/editor.wad --wads-dir /usr/share/doom2df/wads --config ~/.doom2df/Editor.cfg --log-file ~/.doom2df/Editor.log +# Set some env variables +GAME='/usr/share/doom2df/data/game.wad' +DATA='/usr/share/doom2df/data/editor.wad' +LOCALES='/usr/share/doom2df/data/lang' +WADS='/usr/share/doom2df/wads' + +exec editor --game-wad $GAME --editor-wad $DATA --lang-dir $LOCALES --wads-dir $WADS --config ~/.doom2df/Editor.cfg --log-file ~/.doom2df/Editor.log |