summarylogtreecommitdiffstats
path: root/gog-xenonauts
diff options
context:
space:
mode:
Diffstat (limited to 'gog-xenonauts')
-rw-r--r--gog-xenonauts24
1 files changed, 24 insertions, 0 deletions
diff --git a/gog-xenonauts b/gog-xenonauts
new file mode 100644
index 000000000000..e1aff47dd20e
--- /dev/null
+++ b/gog-xenonauts
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+pkgname='gog-xenonauts'
+pkgdir="/opt/${pkgname}/"
+run="${pkgdir}/start.sh"
+
+if hash firejail; then
+ echo "Firejail detected; attempting to enforce a sandbox..."
+ if [[ -f "${XDG_CONFIG_HOME}/firejail/${pkgname}.profile" ]]; then
+ echo "Firejail profile for ${pkgname} found in ${XDG_CONFIG_HOME}/firejail/"
+ echo "Enforcing a sandbox!"
+ firejail "${run}"
+ elif [[ -f "/etc/firejail/${pkgname}.profile" ]]; then
+ echo "Firejail profile for ${pkgname} found in /etc/firejail/"
+ echo "Enforcing a sandbox!"
+ firejail "${run}"
+ else
+ echo "No Firejail profile detected!"
+ echo "Skipping Firejail sandbox..."
+ "${run}"
+ fi
+else
+ "${run}"
+fi