Created
April 6, 2023 01:43
-
-
Save manciuszz/aabf4c717a2e1defdf007bff23abbbf7 to your computer and use it in GitHub Desktop.
Fast No-Browser STEAM Client Launcher using AutoHotkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv | |
#NoTrayIcon | |
ListLines Off | |
SetBatchLines, -1 | |
Process, Priority,, H | |
SetWorkingDir %A_ScriptDir% | |
argumentList = | |
( | |
-dev | |
-console | |
-nofriendsui | |
-no-dwrite | |
-nointro | |
-nobigpicture | |
-nofasthtml | |
-nocrashmonitor | |
-noshaders | |
-no-shared-textures | |
-disablehighdpi | |
-cef-single-process | |
-cef-in-process-gpu | |
-single_core | |
-cef-disable-d3d11 | |
-cef-disable-sandbox | |
-disable-winh264 | |
-cef-force-32bit | |
-no-cef-sandbox | |
-vrdisable | |
-cef-disable-breakpad | |
-noverifyfiles | |
-nobootstrapupdate | |
-skipinitialbootstrap | |
-norepairfiles | |
-no-browser | |
-overridepackageurl steam://open/minigameslist | |
) | |
argumentList := StrReplace(argumentList, "`n", " ") | |
Run, % Format("./steam.exe {1}", argumentList) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment