Created
April 8, 2024 14:51
-
-
Save r1w1s1/7b36d4ef1086e457cfa6298020478cab to your computer and use it in GitHub Desktop.
Installing Firefox Nightly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PART ONE | |
Download Firefox 64-bit | |
cd Downloads | |
wget -o firefox.tar.bz2 'https://download.mozilla.org/?product=firefox-nightly-latest-ssl&os=linux64&lang=en-US' | |
tar xvjf firefox.tar.gz | |
mv firefox firefox-nightly | |
sudo mv firefox-nightly /opt | |
PART TWO | |
vim ~/.local/share/applications/firefox-nightly.desktop | |
[Desktop Entry] | |
Name=Firefox Nightly | |
Comment=Web Browser | |
Exec=/opt/firefox-nightly/firefox-bin %u | |
Terminal=false | |
Type=Application | |
Icon=/opt/firefox-nightly/browser/chrome/icons/default/default128.png | |
Categories=Network;WebBrowser; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment