While you're here, please consider supporting GamingOnLinux on:
Reward Tiers:
Patreon. Plain Donations:
PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers:
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- US operating system age verification bill "Parents Decide Act" gets published
- Mozilla announced "Thunderbolt", their open-source and self-hostable AI client
- PlayStation 3 emulator RPCS3 can now auto-configure games for you
- Gaming on Linux with an older GPU levels up with DXVK-Sarek v1.12 bringing major new features
- SDL (Simple DirectMedia Layer) ban AI / LLM code contributions
- > See more over 30 days here
- Steam achievement conundrum
- GustyGhost - Testing the VRAM valve patch
- Avehicle7887 - Away all of next week
- Liam Dawe - New Desktop Screenshot Thread
- tmtvl - Shop Crush - Psychological Horror Thrift Sim with Literal Illusio…
- hollowlimb - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
AFAICT this should be set up when the Steam client is installed. A steam.desktop file registers a mimetype for steam:// like this:
MimeType=x-scheme-handler/steam;x-scheme-handler/steamlink;and you can see if it's registred properly by using:
xdg-mime query default "x-scheme-handler/steam;x-scheme-handler/steamlink"which should return "steam.desktop" by default./usr/bin/steam steam://install/1402490from a terminal (with the Steam client already running in a second terminall) I get the following output on stdout and the download window opens.ExecCommandLine: "'/home/whizse/.local/share/Steam/ubuntu12_32/steam' 'steam://install/1402490'"ExecuteSteamURL: "steam://install/1402490"
You can check if something mangles the link, and for possible error messages.
(/usr/bin/steam is the path set on my system in Exec in the steam.desktop file mentioned above.)
MimeType=x-scheme-handler/steam;`steam.desktop` is returned if I query just
xdg-mime query default "x-scheme-handler/steam"
The links are sent to Steam, it just doesn’t really do anything with them. Upon further testing, it opens whichever page I have set under "Select which Steam window appears when the program starts", not necessarily the Library.
steam steam://install/1402490
it works as expected. The same link in the browser does nothing but open the Library. In both cases, there’s no output in the terminal though :unsure:
At least I have a workaround of sorts, now ^^ Thanks for your help!
What does your full `Exec` line look like? Mine (unmodified from the install) is:
Exec=sh -c 'STEAM_FRAME_FORCE_CLOSE=1 steam' %U
Last edited by Salvatos on 7 Mar 2022 at 8:59 pm UTC
Yours does look odd though. The %U which is the URI is outside the quote and is never sent to the steam command. Also, one does usually just use env in a .desktop file to set environment variables. Some Mint specific changes/bug?