summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 7a7ea56..4ce0537 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -77,9 +77,9 @@ export MOZILLA_FIVE_HOME
##
if [ "$MOZ_PLUGIN_PATH" ]
then
- MOZ_PLUGIN_PATH=$MOZ_PLUGIN_PATH:$MOZ_LIB_DIR/mozilla/plugins:$MOZ_DIST_BIN/plugins
+ MOZ_PLUGIN_PATH=$MOZ_PLUGIN_PATH:$MOZ_LIB_DIR/mozilla/plugins-wrapped:$MOZ_DIST_BIN/plugins-wrapped
else
- MOZ_PLUGIN_PATH=$MOZ_LIB_DIR/mozilla/plugins:$MOZ_DIST_BIN/plugins
+ MOZ_PLUGIN_PATH=$MOZ_LIB_DIR/mozilla/plugins-wrapped:$MOZ_DIST_BIN/plugins-wrapped
fi
export MOZ_PLUGIN_PATH
@@ -135,6 +135,9 @@ function open_compose() {
# OK, here's where all the real work gets done
+# configure plug-ins
+/usr/bin/firefox-plugin-config
+
# check to see if there's an already running instance or not
ALREADY_RUNNING=`check_running`
bgstack15