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
- Oh dear - ARC Raiders was logging your private Discord chats [updated]
- California law to require operating systems to check your age
- Here's the most played Steam Deck games for February 2026
- Ubuntu and Fedora devs comment on California's new Digital Age Assurance Act
- SteamInputDB is a new site to help you find Steam Input configurations for your gamepads
- > See more over 30 days here
Recently Updated
- Looking for Linux MMORPG sandbox players (Open Source–friendly …
- Strigi - steam overlay performance monitor - issues
- Jarmer - Proton/Wine Games Locking Up
- Caldathras - recently released super fun crpg - Sector Unknown
- Jarmer - Nacon under financial troubles... no new WRC game (?)
- Xpander - 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?