This guide provides instructions for setting up an easy way to toggle Auto HDR on a per-game level for the Steam Deck OLED using Decky Loader and the Bash Shortcuts plugin. The included script will take the appid of the current game from Bash Shortcuts and automatically copy/link the required files into the game directory.
- Decky Loader - Install from Decky Loader.
- Bash Shortcuts Plugin - Install from Bash Shortcuts Plugin for Decky.
NOTE: If you have version 2.0.4 or later of the Bash Shortcuts plugin, you can ignore this step.
Due to a current issue in the Bash Shortcuts plugin that prevents flags from being passed correctly to scripts, you need to perform the following steps:
-
Open the file
/home/deck/homebrew/plugins/bash-shortcuts/py_backend/instanceManager.py
. -
Change line 28 from:
self.shortcutProcess = subprocess.Popen(command, shell=True)
to:
self.shortcutProcess = subprocess.Popen(' '.join(command), shell=True)
-
Restart the Deck to apply changes.
-
Clone or download and unzip this repo to the
Downloads
directory on your Deck. -
Boot into game mode and navigate to the Bash Shortcuts plugin.
-
Create two new shortcuts for 32-bit and 64-bit games respectively:
-
Navigate to plugin config > add shortcut.
-
Name the shortcuts appropriately (e.g., Toggle AutoHDR 32-bit, Toggle AutoHDR 64-bit).
-
Set the command for 32-bit games to:
sh +x /home/deck/Downloads/deck-toggle-autohdr/autohdr_shortcut_32bit.sh
-
Set the command for 64-bit games to:
sh +x /home/deck/Downloads/deck-toggle-autohdr/autohdr_shortcut_64bit.sh
-
Configure the toggles as shown in the screenshot below:
-
Save the shortcuts.
-
-
To enable Auto HDR for a game:
- Determine if the game is 32-bit or 64-bit.
- Go to the game view page for any installed Steam game or launch a game.
- Open the Bash Shortcuts plugin in the Quick Access Menu (QAM) and run the appropriate shortcut based on the game's architecture.
- Once the shortcut has run, it should have copied the required files to the game's directory.
- Either run the game if you were on the game view page, or exit and re-launch if the game was already running. Auto HDR should now be enabled.
-
To disable Auto HDR, repeat Step 4 with the appropriate shortcut. The same shortcut will remove Auto HDR from the game.
To update Reshade or the Auto HDR plugin, add the new files to the correct directories and trigger the shortcut twice to update the files in the game directories.
The limitations are the same as those for the Reshade Auto HDR plugin. For more details, refer to this Twitter post.
- Reshade and Auto-HDR Plugin Developers - For building the functionality.
- @JavaidUsama - For sharing the the AutoHDR files on Twitter.
- u/ManSore - For providing the 32-bit version of the AutoHDR files.
- Tormak - For developing the Bash Shortcuts plugin.
- Decky Loader Team - For making plugin integration possible on the Steam Deck.
This guide and the scripts are currently in a very rough proof of concept stage. Plans for refinement are in place, especially once the issue with the Bash Shortcuts plugin is resolved.