I have downloaded the latest Firefox tar.bz2 file and extracted in home directory, I added it in Favorites. But when I launch it shows the older version.
How can I add the latest version in Favorites to launch it directly from the dock?
I have downloaded the latest Firefox tar.bz2 file and extracted in home directory, I added it in Favorites. But when I launch it shows the older version.
How can I add the latest version in Favorites to launch it directly from the dock?
Mine which is working fine on Ubuntu 18.04 :
For who is having trouble with Firefox Developer Edition, according to this https://askubuntu.com/a/1201328, you have to set the correct
StartupWMClass
in the.desktop
file. My current Firefox Developer version is 98.0b3 and the value forStartupWMClass
isfirefox-aurora
Note: shouldn't add quotation in the value of the desktop file
Copy the .desktop file of your new firefox version to .local/share/applications. This will override your system-wide installed firefox.desktop file. Next time you launch firefox, your new firefox.desktop will be in effect. After firefox has loaded, pin it to the dash.
If still your old firefox version is loaded, then probably the .desktop file, on its
Exec=
line, just calls "firefox" rather than the specific executable of your new version.If the .tar.gz of your new firefox version does not contain a .desktop file, then copy your system wide firefox.desktop from /usr/share/applications to .local/share/applications.
In both cases, edit the local copy, and change the
Exec=
line to reflect the actual file path of the executable of your new version. This file path will depend on where you installed this version.For me changing the
NoDisplay
fromtrue
tofalse
helped in the file~/.local/share/applications
i.eNoDisplay=false
I also added
Icon
,Terminal
,StartupNotify
,StartupWMClass
Here is how the file looks now