Steam Deck¶
Links¶
- Steam Deck Recovery Instructions
- Proton DB: Lists Steam Deck compatible games and offers solutions for those that are not.
- NonSteamLaunchers: Installation of alternative launchers to Steam. Requires installing the Chrome browser from Discover so that some of the installed stores can be launched.
- Dual boot menus:
- Installing Arch Linux
- How to Enable Steam Deck Battery Storage Mode: Reset the power circuit, solving issues such as the Steam Deck not charging through a dock.
- Steam Deck Epic Games Quick & Easy Setup Guide - 2024
Boot modes¶
Key combination | Description |
---|---|
Power |
Normal boot. |
Power + Volume+ |
BIOS menu. |
Power + Volume- |
Boot menu. |
Power + ⋯ |
Bootloader menu. |
Power + Volume- + ⋯ |
Reset UEFI settings. Press and hold both Volume- + ⋯ buttons after the first blinking of the LED. The LED will blink during the operation and stop after it is finished, then release the buttons. |
BIOS backup¶
The Steam Deck does not have the BIOS settings in a CMOS memory maintained with a battery, but in a Winbond flash that if corrupted, the machine will not boot. It is important to make a backup as soon as possible in case there are problems in the future. The backup can be done with the following command from a terminal in desktop mode:
sudo /usr/share/jupiter_bios_updater/h2offt /home/deck/biosbkp.fd -O
Extract the resulting file to /home/deck/biosbkp.fd
and save it in a safe place. The file contains elements particular to each console, so it is not useful to backup another console. That is why it is important to backup our unit.
Interesting file system paths¶
Path | Description |
---|---|
/run/media/ |
SD card mounting point. |
/home/deck/.steam/steam/ |
Steam directory. |
/home/deck/.steam/steam/steamapps/compatdata |
Directory of the installed games/applications where the sandbox is created with the Windows file structure for them. |
/home/deck/.steam/steam/steamapps/common |
Directory of installed games. |
Interesting applications¶
Steam Store¶
Proton BattlEye Runtime
: Makes the BattlEye system used by some games accessible to Linux.Proton Easy Anti-Cheat Runtime
: Makes Epic's Easy Anti-Cheat system accessible to Linux games.Proton Experimental
: Latest (non-stable) version of Proton.
Discover¶
ProtonUp-Qt
: To install different versions of Proton GE.Heroic Games Launcher
: Opensource alternative to Epic Games store, GOG and Amazon Prime Games Launcher.Lutris
: Retro games and emulators installer.Mount Unmount ISO
: Mount and unmount ISO images from Dolphin file explorer.PeaZip
: File compressor and decompressor.
Interesting plugins¶
We need to have Decky installed.
AutoFlatpaks
: Notifies and allows you to update packages that are normally updated from desktop mode.Bluetooth
: Bluetooth device management that would normally be done from desktop mode.Battery Tracker
: Battery information for both Steam Deck and linked controllers.CSS Loader
: Change themes in Steam UI.EmuDecky
: Official EmuDeck plugin to make quick adjustments to emulators.Fantastic
: Change the fan curve.Free Loader
: Displays when free games appear in some of the stores.Game Theme Music
: Allows you to listen to the music of the games in the game tab of the Steam library.HLTB for Deck
: Displays the duration of the games.PlayTime
: Displays the time played in non-Steam games.ProtonDB Badges
: Shows the compatibility of games with Steam Deck according to ProtonDB.SteamGridDB
: To be able to change the covers and artwork of games in the Steam library.Storage Cleaner
: Cleaning of residual files.
Enable SSH¶
- Open
Konsole
in desktop mode. -
Change the password of the
deck
user:passwd
-
Enable SSHD:
sudo systemctl start sshd
-
Enable SSHD at startup:
sudo systemctl enable sshd
Install any Windows application¶
Once we have the installer (.exe or .msi):
- Open Steam application from desktop mode.
- Click the
+ Add a product
button at the bottom left. - Select
Add a non-Steam program...
. - Click
Search...
at the bottom left in the window that appears. - Select the executable of the program you want to install (if the executable is not
.exe
change the filter toAll files
). - Click
Add selected
. - Select the program in the Steam library (under
Uncategorized
), click the gear icon (Manage
) and selectProperties...
from the dropdown. - Select the
Compatibility
group of options and force the use of the last version of Proton GE that we have available (for this we must have previously installedProtonUp-Qt
from theDiscover
store and have installed some version of Proton GE). - Click on
Play
. - It will start the installer whose assistant we will follow as if we were in Windows.
- When it finishes and the installer closes, we will see that the
Play
button in Steam is activated again. - We erase the executable of the route where we had it.
- What we have just installed will have finished in the same sandbox that has been created with the steps 1 to 8. If we eliminated the entry in the library, everything would be lost, therefore we must modify the launcher of the installer so that it behaves like the launcher of what we have installed. To do this open the file explorer and go to the path
/home/deck/.steam/steam/steamapps/compatdata
. There we will find the folders of the installed games/applications. We find out the folder with the identifier corresponding to the installation that we have just done (for example helping us with the dates of creation of the folders). Inside this folder we will look for the launching of what we have just installed (it can be a.exe
or a.lnk
that appears in the Windows desktop or in the start menu). - We should still have in front the entry corresponding to the installer in the Steam library, if not select it.
- Click the gear icon (
Manage
) and selectProperties...
from the drop-down menu. - Change the Shortcut name and the
Destination
andStart at
entries to the paths we found out in step 13. - Change the game art to look better in the Steam library (for this we must have installed
Decky
and theSteamGridDB
plugin).
Dependency solution in Windows games with Proton¶
If a game does not start because of a missing dependency, we can install it and then link it to the game launcher in the following way. We are going to see it for example with the Microsoft Windows C++ Runtime
:
- Search for the dependency. In the case of the
Micrsoft Windows C++ Runtime
we can download it from this page. - We create a launcher in Steam for the installer of the dependency using steps 1 to 8 of previous section (do not forget to select ProtonGE as compatibility tool).
- We open the launcher to install the dependency.
- We find out the folder with the identifier corresponding to the installation that we have just made inside the directory
/home/deck/.steam/steam/steamapps/compatdata
(for example helping us with the dates of creation of the folders). We imagine for the example that the path where the dependency has ended up installed is/home/deck/.steam/steam/steam/steamapps/compatdata/12345678/
. - Delete the launcher created in step 2.
- Select the game in the Steam library that requires the dependency, click the gear icon (
Manage
) and selectProperties...
from the drop-down. -
In the
Direct Access
section, in theLaunch Parameters
field, enter the following (changing the path to the appropriate path):STEAM_COMPAT_DATA_PATH="/home/deck/.steam/steam/steamapps/compatdata/12345678" %command%
-
Close the Properties window and click
Play
.
In case a game requires several dependencies, we can incorporate as many STEAM_COMPAT_DATA_PATH
entries as needed separated by a space.