Skip to content

Instantly share code, notes, and snippets.

@sen0rxol0
Last active November 11, 2017 15:02
Show Gist options
  • Save sen0rxol0/8923e09b5b69d00fdcd6478ed662270c to your computer and use it in GitHub Desktop.
Save sen0rxol0/8923e09b5b69d00fdcd6478ed662270c to your computer and use it in GitHub Desktop.
Setup Firefox Developer Edition

Installing firefox developer edition on debian/ubuntu

Download your installation files

When your download as finished

extract your files

$ mkdir /opt/firefoxde
$ tar -xjvf ~/Downloads/firefox-[version].[lang].[platform].tar.bz2 
$ mv ~/Downloads/firefox/* /opt/firefoxde

Add the launcher to your menu

$ cd ~/.local/share/applications

create a new file named firefoxde.desktop and paste this metadata

[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=Firefox DE
GenericName=Firefox Developer Edition
X-GNOME-FullName=Firefox Developer Edition
Comment=Browse the World Wide Web
Icon=/opt/firefoxde/browser/icons/mozicon128.png
Exec=/opt/firefoxde/firefox %u
Terminal=false
Categories=Network;WebBrowser;
Actions=Default;Mozilla;ProfileManager;
X-MultipleArgs=false
MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/vnd.mozilla.xul+xml;application/rss+xml;application/r$
StartupWMClass=Firefox-de
StartupNotify=true

[Desktop Action Default]
Name=Default Profile
Exec=/opt/firefoxde/firefox --no-remote -P minefield-default

[Desktop Action Mozilla]
Name=Mozilla Profile
Exec=/opt/firefoxde/firefox --no-remote -P minefield-mozilla

[Desktop Action ProfileManager]
Name=Profile Manager
Exec=/opt/firefoxde/firefox --no-remote --profile-manager

Save your file and run

$ desktop-file-install firefoxde.desktop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment