diff options
Diffstat (limited to 'firefox-profile-sync')
-rwxr-xr-x | firefox-profile-sync | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/firefox-profile-sync b/firefox-profile-sync deleted file mode 100755 index 367d9dd..0000000 --- a/firefox-profile-sync +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash -# -# Sync Firefox chrome config -# - -# Parameters -BASEDIR="`dirname $0`" -BASE="$HOME/.mozilla/firefox" -PROFILES="$BASE/profiles" - -# Go to the profiles folder -mkdir -p $PROFILES -cd $PROFILES - -# Dispatch -for profile in *; do - echo "Syncing $profile..." - rsync -q -av --delete $BASEDIR/profile/chrome/ $profile/chrome/ - cp $BASEDIR/profile/user.js $profile/user.js -done |