Skip to content

Instantly share code, notes, and snippets.

@manciuszz
Created April 6, 2023 01:43
Show Gist options
  • Save manciuszz/aabf4c717a2e1defdf007bff23abbbf7 to your computer and use it in GitHub Desktop.
Save manciuszz/aabf4c717a2e1defdf007bff23abbbf7 to your computer and use it in GitHub Desktop.
Fast No-Browser STEAM Client Launcher using AutoHotkey
#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