aboutsummaryrefslogtreecommitdiff
path: root/browser/linux/resources
diff options
context:
space:
mode:
Diffstat (limited to 'browser/linux/resources')
-rwxr-xr-xbrowser/linux/resources/launch_scripts/launch_librewolf.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/browser/linux/resources/launch_scripts/launch_librewolf.sh b/browser/linux/resources/launch_scripts/launch_librewolf.sh
index 569c03f..88058c6 100755
--- a/browser/linux/resources/launch_scripts/launch_librewolf.sh
+++ b/browser/linux/resources/launch_scripts/launch_librewolf.sh
@@ -1,9 +1,10 @@
#!/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
+# 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;
bgstack15