mirror of
https://github.com/arkenfox/user.js.git
synced 2025-04-30 14:03:40 +02:00

The `prefsCleaner.sh` script chdir()'s to the script's directory on execution, which isn't necessary at all, and also means that has to reside within the Firefox profile directory, rather than being callable directly from the Git clone. `updater.sh` has the same "problem", but honours the `-p` switch to let the working directory be overridden. This patch removes the unnecessary code, such that the `prefsCleaner.sh` script works on `./user.js`. Signed-off-by: martin f. krafft <madduck@madduck.net>
102 lines
3.5 KiB
Bash
Executable file
102 lines
3.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
## prefs.js cleaner for Linux/Mac
|
|
## author: @claustromaniac
|
|
## version: 1.4
|
|
|
|
## special thanks to @overdodactyl and @earthlng for a few snippets that I stol..*cough* borrowed from the updater.sh
|
|
|
|
fQuit() {
|
|
## change directory back to the original working directory
|
|
[ "$1" -eq 0 ] && echo -e "\n$2" || echo -e "\n$2" >&2
|
|
exit $1
|
|
}
|
|
|
|
fUsage() {
|
|
echo -e "\nUsage: $0 [-s]"
|
|
echo -e "
|
|
Optional Arguments:
|
|
-s Start immediately"
|
|
}
|
|
|
|
fFF_check() {
|
|
# there are many ways to see if firefox is running or not, some more reliable than others
|
|
# this isn't elegant and might not be future-proof but should at least be compatible with any environment
|
|
while [ -e lock ]; do
|
|
echo -e "\nThis Firefox profile seems to be in use. Close Firefox and try again.\n" >&2
|
|
read -r -p "Press any key to continue."
|
|
done
|
|
}
|
|
|
|
fClean() {
|
|
# the magic happens here
|
|
prefs="@@"
|
|
prefexp="user_pref[ ]*\([ ]*[\"']([^\"']+)[\"'][ ]*,"
|
|
while read -r line; do
|
|
if [[ "$line" =~ $prefexp && $prefs != *"@@${BASH_REMATCH[1]}@@"* ]]; then
|
|
prefs="${prefs}${BASH_REMATCH[1]}@@"
|
|
fi
|
|
done <<< "$(grep -E "$prefexp" user.js)"
|
|
|
|
while IFS='' read -r line || [[ -n "$line" ]]; do
|
|
if [[ "$line" =~ ^$prefexp ]]; then
|
|
if [[ $prefs != *"@@${BASH_REMATCH[1]}@@"* ]]; then
|
|
echo "$line"
|
|
fi
|
|
else
|
|
echo "$line"
|
|
fi
|
|
done < "$1" > prefs.js
|
|
}
|
|
|
|
fStart() {
|
|
if [ ! -e user.js ]; then
|
|
fQuit 1 "user.js not found in the current directory."
|
|
elif [ ! -e prefs.js ]; then
|
|
fQuit 1 "prefs.js not found in the current directory."
|
|
fi
|
|
|
|
fFF_check
|
|
bakfile="prefs.js.backup.$(date +"%Y-%m-%d_%H%M")"
|
|
mv prefs.js "${bakfile}" || fQuit 1 "Operation aborted.\nReason: Could not create backup file $bakfile"
|
|
echo -e "\nprefs.js backed up: $bakfile"
|
|
echo "Cleaning prefs.js..."
|
|
fClean "$bakfile"
|
|
fQuit 0 "All done!"
|
|
}
|
|
|
|
echo -e "\n\n"
|
|
echo " ╔══════════════════════════╗"
|
|
echo " ║ prefs.js cleaner ║"
|
|
echo " ║ by claustromaniac ║"
|
|
echo " ║ v1.4 ║"
|
|
echo " ╚══════════════════════════╝"
|
|
echo -e "\nThis script should be run from your Firefox profile directory.\n"
|
|
echo "It will remove any entries from prefs.js that also exist in user.js."
|
|
echo "This will allow inactive preferences to be reset to their default values."
|
|
echo -e "\nThis Firefox profile shouldn't be in use during the process.\n"
|
|
|
|
[ "$1" == '-s' ] && fStart
|
|
|
|
select option in Start Help Exit; do
|
|
case $option in
|
|
Start)
|
|
fStart
|
|
;;
|
|
Help)
|
|
fUsage
|
|
echo -e "\nThis script creates a backup of your prefs.js file before doing anything."
|
|
echo -e "It should be safe, but you can follow these steps if something goes wrong:\n"
|
|
echo "1. Make sure Firefox is closed."
|
|
echo "2. Delete prefs.js in your profile folder."
|
|
echo "3. Delete Invalidprefs.js if you have one in the same folder."
|
|
echo "4. Rename or copy your latest backup to prefs.js."
|
|
echo "5. Run Firefox and see if you notice anything wrong with it."
|
|
echo "6. If you do notice something wrong, especially with your extensions, and/or with the UI, go to about:support, and restart Firefox with add-ons disabled. Then, restart it again normally, and see if the problems were solved."
|
|
echo -e "If you are able to identify the cause of your issues, please bring it up on the arkenfox user.js GitHub repository.\n"
|
|
;;
|
|
Exit)
|
|
fQuit 0
|
|
;;
|
|
esac
|
|
done
|