mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-07 17:15:30 +02:00
6 lines
270 B
Bash
6 lines
270 B
Bash
#!/bin/sh
|
|
CURRENTDIR="$(dirname "$(readlink -f "$0")")"
|
|
export PATH="${CURRENTDIR}:${PATH}"
|
|
export MOZ_LEGACY_PROFILES=1 # Prevent per installation profiles
|
|
export MOZ_APP_LAUNCHER="${APPIMAGE}" # Allows setting as default browser
|
|
exec "${CURRENTDIR}/zen" "$@"
|