+#XXX: potential bug with newlines in profile name (if ff even takes it)
+#XXX: breaks on multiple profiles
+ffdir="`find "$HOME/.mozilla/firefox" -type d -mindepth 1 -maxdepth 1 | head -1 2>$devnull`"
+if [ -d "$ffdir" ]; then
+ find firefox -mindepth 1 -maxdepth 1 | while read -r x; do
+ l "$ffdir/`basename "$x"`"
+ done
+ cd "$ffdir"
+ echo "Updating user.js"
+ sh ./user-js-updater.sh
+ cd - >$devnull
+fi