aboutsummaryrefslogtreecommitdiff
path: root/browser/linux/resources/launch_scripts/launch_librewolf.sh
blob: 88058c6673a52cd65f186ba40dcd0cda2f0728a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash

# PROFILE SPECIFIC SETTINGS WILL NOT WORK, DO NOT UNCOMMENT
# Adds option to install settings if argument is passed
# if [ "$1" = "--install-settings" ]; then
#    ./install_settings;
# fi

# Sets env variables to disable dedicated profiles (which breaks in some cases)
export MOZ_LEGACY_PROFILES=1;
export SNAP_NAME="firefox";
SCRIPT_FOLDER=$(realpath $(dirname $0));
chmod +x $SCRIPT_FOLDER/librewolf;
$SCRIPT_FOLDER/librewolf "$@"; 



bgstack15