2016-05-23 18:27:22 -04:00
|
|
|
# firefox-link
|
|
|
|
A sane default firefox profile
|
|
|
|
|
|
|
|
## For Mac
|
2016-05-23 19:20:36 -04:00
|
|
|
```bash
|
2016-05-23 19:30:56 -04:00
|
|
|
NAME=$RANDOM
|
|
|
|
git clone https://austenwares.com/gogs/stonewareslord/firefox-link ~"/Library/Application Support/Firefox/Profiles/$NAME"
|
2016-05-23 19:32:03 -04:00
|
|
|
printf "\n[Profile$((1+$(cat ~"/Library/Application Support/Firefox/profiles.ini" | ag '\[Profile\d+\]' | tail -n1 | sed -e 's/\[Profile//' -e 's/\]//')))]\nName=firefox-link\nIsRelative=1\nPath=Profiles/$NAME">>~"/Library/Application Support/Firefox/profiles.ini"
|
2016-05-23 19:33:14 -04:00
|
|
|
'/Applications/Firefox.app/Contents/MacOS/firefox' -p
|
2016-05-23 18:27:22 -04:00
|
|
|
```
|