[solved] Can I soft link a non existing executable to an existing one?

Edit: while waiting for your replies, my PAM lockout/timeout reset and I was able to try. It worked. 🤣

I am trying to open the cloud provider Internxt's desktop app. I have Librewolf installed, which I'm sure is going to work as a substitute for Firefox. Can I

ln -s /usr/bin/librewolf /usr/bin/firefox  

to make their app use Librewolf instead, thinking it's actually executing Firefox? If not, would an alias work?

21 points · 8 comments · view on lemmy.world

8 Comments

thenextguy@sh.itjust.works · 19 pts · 5d (3 replies)

https://askubuntu.com/questions/18418/how-can-i-set-which-application-is-launched-by-xdg-open

You might want to configure xdg to open what you want instead.

akunohana@piefed.blahaj.zone · 5 pts · 5d (2 replies)

Thanks! I'll bookmark this since I should learn xdg someday, but not today. 🤣 For now, this ln fakery worked. 😅

redrumBot@lemmy.ml · 2 pts · 5d (1 reply)

You can use the update-alternatives command with the x-www-browser key to create the symlink and let the system manage it.

It seems to me that having the symbolic link in /usr/bin would cause an error if you tried to install Firefox. It might be better to place the symlink in /usr/local/bin.

akunohana@piefed.blahaj.zone · 1 pts · 4d

Thanks! I don't see myself ever installing Firefox, but I'll definitely read up of the differences between local/bin and "normal" bin. :)

akunohana@piefed.blahaj.zone · 5 pts · 5d

While waiting for your replies, my PAM lockout/timeout reset and I was able to try. It worked. 🤣

MonkderVierte@lemmy.zip · 2 pts · 5d (2 replies)

Eh, i just symlink the executable to ~/.local/bin/xdg-web and set that in the Webbrowser shortcut. There's a bunch of xdg- links now and i know with a ls -l what's what.

akunohana@piefed.blahaj.zone · 2 pts · 4d (1 reply)

Oh, well... xD Maybe next time then. I guess the only difference in my case is that xdg still looks through all possible executables until encounteres Firefox? While your solution doesn't have to run through them all, but immediately jumps to the browser of your choice?

MonkderVierte@lemmy.zip · 1 pts · 4d

Exactly. I've found xdg's script with a switch case cumbersone with my custom script (and ugly), while the other stuff is good enough for open-with. So i just "wire" the defaults, while keeping to a naming scheme.

Edit: in hindsight, this sounds confusing, huh?