Skip to content

Add FF Dev Ed Shortcut - Linux

Published: at 10:38 AM

To create a shortcut for Firefox Developer Edition (FFDevEd) on a Linux system, you can follow the instructions below. This will allow you to launch the Firefox Developer Edition from your desktop or application menu.

Understanding the Desktop Entry File

To create a shortcut for Firefox Developer Edition on your Linux desktop, we’ll use a .desktop file. This file contains metadata about the application, such as its name, comment, icon, and the command to execute.

Creating the .desktop File

  1. Choose a Location:

    • Create a new text file in your home directory’s .local/share/applications directory. This is a common location for desktop entries.
    • You can also create it in a specific application directory if you prefer.
  2. Edit the File:

    • Open the file in a text editor and paste the following content, replacing the paths with the correct ones for your Firefox Developer Edition installation:
    [Desktop Entry]
    Name=FFDevEd
    Comment=Firefox Developer Edition
    Exec=/path/to/firefox-developer-edition
    Icon=/path/to/firefox-developer-edition/browser/icons/mozicon128.png
    Terminal=false
    Type=Application
    StartupNotify=true
    
    • Replace the placeholders:
      • /path/to/firefox-developer-edition: This should be the path to the Firefox Developer Edition executable file.
      • /path/to/firefox-developer-edition/browser/icons/mozicon128.png: This should be the path to the desired icon for the shortcut.
  3. Save the File:

    • Save the file with a .desktop extension, such as firefox-developer-edition.desktop.

Explanation of the Fields:

Additional Tips:


Previous Post
.NET or C# Reference Links and Code Snippets
Next Post
Config Files Management