Advanced DLSS & Proton Manager for Steam Games on Linux
ProtonForge is a powerful Qt6 application designed to give Linux gamers full control over NVIDIA DLSS settings and Proton versions for Steam games. Configure DLSS Super Resolution, Ray Reconstruction, Frame Generation, HDR support, and more - all from a single, intuitive interface.
Note: ProtonForge currently focuses on NVIDIA graphics cards for DLSS-related features. Proton management features work with any GPU.
- Super Resolution (SR): Configure DLSS upscaling modes (Performance, Balanced, Quality, DLAA, Ultra Performance)
- Ray Reconstruction (RR): Fine-tune ray tracing denoising
- Frame Generation (FG): Control DLSS 3 multi-frame generation
- Custom Scaling Ratios: Set precise render resolution percentages
- Render Presets: Choose from preset A-O for optimal quality/performance balance
- Individual HDR Options: Separately configure PROTON_ENABLE_WAYLAND, PROTON_ENABLE_HDR, and ENABLE_HDR_WSI
- Smart Detection: Automatic detection of system HDR status on KDE Plasma and Gnome
- Desktop Environment Awareness: Provides specific instructions for enabling HDR based on your DE
- Wayland Check: Warns if you're running on X11 (HDR requires Wayland)
- Automatic Updates: Check for and install Proton-CachyOS and Proton-GE updates
- Version Selection: Choose specific Proton versions per game
- Version Browser: Browse and install any available Proton release
- Smart Notifications: Get notified about new versions, with intelligent "don't ask again" for dismissed updates
- Delete Versions: Remove unused Proton installations to save disk space
- Direct Launch: Start games directly from ProtonForge with custom settings
- Steam Integration: Copy launch options to clipboard or write directly to Steam
- Per-Game Settings: Save unique configurations for each game
- Executable Selection: Automatically detect or manually choose the correct game executable
- Launch Preview: See exactly what environment variables will be set before launching
- Frame Rate Limiting: Set precise FPS caps (DXVK_FRAME_RATE)
- Smooth Motion: Enable vsync enhancements for tear-free gaming
- DLSS Upgrade: Force newer DLSS DLL versions
- Game Library Browser: Beautiful grid view with Steam artwork
- Real-time Preview: See launch command changes in real-time
- Native Linux Support: Separate settings for native Linux games
- Single Instance: Prevents multiple app instances running simultaneously
- Operating System: Linux (tested on Ubuntu, Arch, Fedora)
- Desktop Environment: KDE Plasma 5.27+ or Gnome 46+ (for HDR support)
- Display Server: Wayland (required for HDR)
- Qt: Qt6 6.0 or later
- Steam: Installed and configured
- NVIDIA GPU: For DLSS features (GTX 16xx/RTX 20xx or newer)
- CMake 3.16+
- C++17 compatible compiler (GCC 9+ or Clang 10+)
- Qt6 development packages:
- Qt6Core
- Qt6Widgets
- Qt6Network
- Qt6Concurrent
Flatpak provides the easiest installation method that works across all Linux distributions:
# Download from GitHub releases
wget https://github.com/theinvisible/proton-forge/releases/download/v1.0.4/protonforge.flatpak
# Install
flatpak install protonforge.flatpak
# Run
flatpak run org.protonforge.ProtonForgeOr from Flathub (once published):
flatpak install flathub org.protonforge.ProtonForgeBuilt on: Ubuntu 25.10 (Oracular Oriole) - the latest Ubuntu release. Compatible with Ubuntu 24.04 LTS and other Debian-based distributions with Qt6 6.0+.
# Download the latest release
wget https://github.com/theinvisible/proton-forge/releases/download/v1.0.4/protonforge_1.0.4_amd64.deb
# Install
sudo dpkg -i protonforge_1.0.4_amd64.deb
# Install dependencies if needed
sudo apt-get install -f# Clone the repository
git clone https://github.com/theinvisible/proton-forge.git
cd protonforge
# Create build directory
mkdir build && cd build
# Configure and build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . -j$(nproc)
# Install (optional)
sudo cmake --install .# Build release version
mkdir cmake-build-release && cd cmake-build-release
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . -j$(nproc)
cd ..
# Create .deb package
bash build-deb.sh-
Start ProtonForge:
protonforge
-
Select a Game: Click on any Steam game in the library
-
Configure Settings:
- Enable NVAPI (required for DLSS)
- Configure DLSS options as needed
- Set up HDR if you have compatible hardware
- Choose Proton version
-
Launch or Export:
- Click Play to launch directly with custom settings
- Click Copy to Clipboard to get launch options
- Click Write to Steam to save settings permanently
Install/Update Proton:
- Go to Tools โ Install Proton-CachyOS
- Select desired version from the list
- Wait for download and installation
Check for Updates:
- Tools โ Check for Proton Updates
- Get notified about new releases
Delete Old Versions:
- Open version dialog
- Select installed version
- Click Delete Selected
For HDR to work, you need:
- HDR-capable display
- Wayland session
- HDR enabled in system settings
KDE Plasma:
- System Settings โ Display Configuration
- Select your monitor
- Enable "Allow HDR"
Gnome:
gsettings set org.gnome.mutter experimental-features "['hdr']"ProtonForge stores configurations in:
- Settings:
~/.config/ProtonForge/settings.json - Image Cache:
~/.cache/ProtonForge/images/ - Qt Settings: Standard QSettings location
Settings are automatically saved per-game and persist across sessions.
protonforge/
โโโ src/
โ โโโ core/ # Game data, settings, DLSS configuration
โ โโโ launchers/ # Steam launcher integration
โ โโโ network/ # Image downloading and caching
โ โโโ parsers/ # VDF parser for Steam configs
โ โโโ runner/ # Game execution and Proton handling
โ โโโ ui/ # Qt widgets and dialogs
โ โโโ utils/ # Utilities (EnvBuilder, ProtonManager, HDRChecker)
โโโ debian/ # Debian package configuration
โโโ CMakeLists.txt
โโโ build-deb.sh # Automated .deb builder
Contributions are welcome! Please feel free to submit pull requests or open issues for bugs and feature requests.
# Clone and build debug version
git clone https://github.com/theinvisible/proton-forge.git
cd protonforge
mkdir cmake-build-debug && cd cmake-build-debug
cmake -DCMAKE_BUILD_TYPE=Debug ..
cmake --build . -j$(nproc)
# Run from build directory
./ProtonForge- C++17 standard
- Qt naming conventions
- Descriptive variable names
- Comments for complex logic
ProtonForge is licensed under the MIT License. See LICENSE file for details.
Copyright (c) 2025 ProtonForge
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
- NVIDIA: For DLSS technology and NVAPI
- Valve: For Proton and Steam
- CachyOS Team: For Proton-CachyOS builds
- GloriousEggroll: For Proton-GE builds
- Qt Project: For the excellent Qt framework
- dxvk-nvapi: For making NVIDIA features work on Linux
- Claude (Anthropic): This project was developed with AI assistance from Claude Code
- GitHub: https://github.com/theinvisible/proton-forge
- Issues: https://github.com/theinvisible/proton-forge/issues
- Releases: https://github.com/theinvisible/proton-forge/releases
Q: Do I need an NVIDIA GPU? A: Yes, DLSS features require NVIDIA RTX. However, you can still use ProtonForge for Proton management on any GPU.
Q: Does this work with non-Steam games? A: Currently, ProtonForge focuses on Steam games. Support for other launchers may be added in the future.
Q: Can I use this on X11? A: Yes, but HDR features require Wayland. All other features work on both X11 and Wayland.
Q: Will this break my Steam installation?
A: No, ProtonForge only modifies per-game launch options and installs Proton versions to the standard location (~/.steam/root/compatibilitytools.d/).
Q: How do I report bugs? A: Please open an issue on GitHub with:
- Your Linux distribution and version
- Desktop environment
- Steps to reproduce
- Expected vs actual behavior
Made with โค๏ธ for the Linux gaming community