- Bookmark toolbar Chrome behaviour: display only on new tab (kinda...)
- Remove extra space on top left before tabs when Firefox isn't full screen
- Do not show title bar (looks bulky in ubuntu)
- Do not hide tab bar in full screen
Use this method on a new system or if you do not care to destroy all firefox settings (cookies, bookmarks, extensions, preferences, etc...). If you use sync, it should not be a problem.
# Replace with relevant values
FIREFOX_HOME=/home/<username>/.mozilla/firefox
GIST=<path of unziped gist>
# Recreate firefox config dir and cd into it
rm -r $FIREFOX_HOME
mkdir $FIREFOX_HOME
cd $FIREFOX_HOME
mkdir -p 1d3nt1ty.perso/chrome
cp $GIST/userChrome.css 1d3nt1ty.perso/chrome
cp $GIST/times.json 1d3nt1ty.perso
cp $GIST/user.js 1d3nt1ty.perso
cp $GIST/profiles.ini .
# firefox needs to be notified to use the profile `perso` once, then it'll be used by default
firefox -P perso
Use this method to integrate with an existing firefox profile, i.e. you do want to keep firefox's state.
# Replace with relevant values
FIREFOX_HOME=/home/<USERNAME>/.mozilla/firefox
GIST=<path of unziped gist>
# figure out what is the current profile used by firefox, visble in the second line (under [Install...])
cat $FIREFOX_HOME/profiles.ini
# cd in the current profile folder
# ...
mkdir chrome
# copy the relevant files into your existing profile
cp $GIST/userChrome.css chrome
cp $GIST/user.js .
In any case, to show the bookmarks tab only on new-tab page, it is needed to manually right click on the main toolbar and toggle "Bookmarks Toolbar".