summarylogtreecommitdiffstats
path: root/gog-owlboy
blob: 4642d87e61b0079e360c38da39e0ffdea13b92b7 (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-owlboy"
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