Include the ipfs file.

This commit is contained in:
Storm Dragon
2026-09-02 16:02:11 -04:00
parent b3ac639b45
commit 1787d56aeb
2 changed files with 16 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/env bash
run_with_optional_gamemode() {
if command -v gamemoderun &> /dev/null; then
gamemoderun "$@"
else
"$@"
fi
}
+7
View File
@@ -0,0 +1,7 @@
# shellcheck shell=bash disable=SC2034,SC2154
# Central repository for IPFS game download URLs
declare -Ag ipfs=(
# Games (alphabetical order)
[FreeDoom]="${ipfsGateway}/ipfs/QmU6REFot8CGVSBy2YWQxnmXoh7M4EF74RxFtLzvtJxoGC?filename=toby_doom_9.0_full.zip"
)