I know that this is not really a PuroOS related issue/question, but I came to this because the Tor-Browser in the Pure-OS repo does not work. So I currently use an extracted version directly downloaded from the tor project website.
To start it I always have to browse/navigate to the extracted folder and launch it.
Is there someone who can explain how I can add an application to the dock (add to favorites) which is not really installed (just unpacked and started)? Add to favorites seems to be only possible if the application is installed normally.
I think you probably just need to create a .desktop file and move/copy it to ~/.local/share/applications/
Then it should at least show up in the âApplicationsâ menu, and right-clickingâ>Add to Favorites should successfully add it (as far as I know)
I donât have Tor, but hereâs an ad-hoc modified .desktop file that might work. Just make sure to made Exec and Path appropriate for your installation:
[Desktop Entry]
Type=Application
Name=Tor-Browser
GenericName=Secture Web Browser
Comment=Private Web Browser
Exec=/path/to/tor
Path=/path/to/
Icon=tor.png
Terminal=false
Categories=Web;Privacy;
Keywords=secure;security;privacy;private;web;browser;
StartupNotify=true
Even there is no other file in " ~/.local/share/applications/" (I thought the other applications should have a .desktop file there as well) your solution is correct.
My Tor_Browser.desktop file looks like this now (copied the content from a âstart-tor-brower.desktopâ file which appeared in the extracted browser path after starting Tor ones using the bash script file: â<path_to_extracted_tor>/Browser/start-tor-browerâ):
[Desktop Entry]
Type=Application
Name=Tor Browser
GenericName=Web Browser
Comment=Tor Browser is +1 for privacy and -1 for mass surveillance
Categories=Network;WebBrowser;Security;
Exec=sh -c â"<path_to_extracted_tor>/Browser/start-tor-browser" --detach || ([ ! -x â<path_to_extracted_tor>/Browser/start-tor-browserâ ] && â$(dirname â$*â)â/Browser/start-tor-browser --detach)â dummy %k
X-TorBrowser-ExecShell=./Browser/start-tor-browser --detach
Icon=<path_to_extracted_tor>/Browser/browser/icons/mozicon128.png
StartupWMClass=Tor Browser
A reboot was necessary in my case otherwise I could not open the menu to click on âAdd to Favoritesâ.