blob: 18ed60a11106156b62816c593a0911bbcd0497bf (
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
|
#! /bin/bash
pkgname="gog-the-witcher-2-assassins-of-kings"
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
|