#!/bin/bash if [[ $EUID -eq 0 ]]; then exec -a "$0" "/usr/bin/falkon" "$@" --no-sandbox & else exec -a "$0" "/usr/bin/falkon" "$@" & fi exit 0