summarylogtreecommitdiffstats
path: root/gog-serpent-in-the-staglands
blob: a8a59de7b93880cd8a2e99ba4b4001de3750135b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

run="/opt/gog-serpent-in-the-staglands/start.sh"
# The launcher fails unless in its dir.
cd "$(dirname "$run")" || exit 1

if which firejail >/dev/null 2>&1 && [ -z "$FIREJAIL_IGNORE" ]; then
  echo "Firejail detected. Enforcing a sandbox"
  echo "To bypass Firejail enforcement, run FIREJAIL_IGNORE=1 $run."
  firejail --caps.drop=all "$run"
else
  "$run"
fi