Skip to content

Instantly share code, notes, and snippets.

@rbreaves
Last active August 18, 2020 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbreaves/72c4013b5448db0b2b1f2967056fae5a to your computer and use it in GitHub Desktop.
Save rbreaves/72c4013b5448db0b2b1f2967056fae5a to your computer and use it in GitHub Desktop.
Firefox Global Menu
#!/bin/bash
# http://linux.darkpenguin.net/distros/ubuntu-unity/fixer/archive/firefox-globalmenu.fix
killall firefox > /dev/null 2>&1 || true
wget -q --show-progress --progress=bar:force 'http://archive.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_79.0+build1-0ubuntu0.18.04.1_amd64.deb' 2>&1
apt-get -y --allow-downgrades install './firefox_79.0+build1-0ubuntu0.18.04.1_amd64.deb'
apt-mark hold firefox > /dev/null 2>&1 || true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment