diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-19 12:09:46 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-19 12:09:46 -0300 |
commit | e83be32ab336ae049e964f22ad4ead090ba01cde (patch) | |
tree | e58ead42832f708eb036fe45b579d529105c09ae /firefox-profile-sync | |
parent | 395058823101437cd5ae4d14ffa80d297be4fd0e (diff) | |
download | firefoxer-e83be32ab336ae049e964f22ad4ead090ba01cde.tar.gz firefoxer-e83be32ab336ae049e964f22ad4ead090ba01cde.tar.bz2 |
Feat: manage user.js
Diffstat (limited to 'firefox-profile-sync')
-rwxr-xr-x | firefox-profile-sync | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firefox-profile-sync b/firefox-profile-sync index 3b0196a..367d9dd 100755 --- a/firefox-profile-sync +++ b/firefox-profile-sync @@ -15,5 +15,6 @@ cd $PROFILES # Dispatch for profile in *; do echo "Syncing $profile..." - rsync -q -av --delete $BASEDIR/chrome/ $profile/chrome/ + rsync -q -av --delete $BASEDIR/profile/chrome/ $profile/chrome/ + cp $BASEDIR/profile/user.js $profile/user.js done |