Yeah, no. I'd rather play Overwatch.
Caution
Everything appears to work fine, and the anti-cheat system at least starts. However, I am not responsible for any bans or suspensions that may occur. Proceed at your own risk.
[!TIP]
| 080068030c030430020c0301060406020c000b090700001203010a0a016b6904000214031304170d04000a040109 |
| #!/bin/bash | |
| # By Ratel (https://github.com/cd-ratel/Steam-deck-Pentest) | |
| # | |
| # This script unlocks the typical Arch Linux environment (pacman/yay). | |
| # Enjoy! | |
| if [ $EUID -eq 0 ]; then | |
| echo "The script cannot be run as root. Exiting..." | |
| exit 1 | |
| fi |
| local mp = require 'mp' | |
| -- Configuration | |
| local autovsr_enabled = true -- Default to VSR enabled | |
| local autohdr_enabled = true -- Default to RTX HDR (SDR to HDR) enabled | |
| -- Function to apply VSR and RTX HDR | |
| local function apply_filters() | |
| -- Get video and display properties | |
| local video_width = mp.get_property_number("width") |
| ; %localappdata%\DuneSandbox\Saved\Config\WindowsClient | |
| [SystemSettings] | |
| ; ─── HDR Output & Display Gamut ─────────────────────────────────────────── | |
| r.AllowHDR=1 ; Enables HDR rendering support in the engine | |
| r.HDR.EnableHDROutput=1 ; Sends HDR output to compatible display (triggers HDR10 mode) | |
| ; Option list for the two settings below can be found here: | |
| ; https://dev.epicgames.com/documentation/en-us/unreal-engine/high-dynamic-range-display-output-in-unreal-engine#:~:text=r.HDR.Display,%3A%20ACEScg%2C%20D60 | |
| r.HDR.Display.OutputDevice=5 ; Uses ST.2084 (PQ) tone curve — for proper HDR10 tone mapping |
| // Zed settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // | |
| // To see all of Zed's default settings without changing your | |
| // custom settings, run `zed: open default settings` from the | |
| // command palette (cmd-shift-p / ctrl-shift-p) | |
| { | |
| "outline_panel": { |
| # procwatch.ps1 - lightweight new-process watcher for Windows / PowerShell 7 | |
| # | |
| # Drop into your $PROFILE (or dot-source on demand) and call procwatch. | |
| # Captures: PID/PPID, image path, command line, owner, session id, working | |
| # directory, full environment (PEB read), and parent chain. Optional rotating | |
| # file logs. | |
| # | |
| # Examples: | |
| # procwatch # watch only, console output | |
| # procwatch -Trace # also walk parent chain |