gitextract_qap8whry/ ├── .github/ │ └── workflows/ │ └── main.yml ├── LICENSE ├── Manifests.json ├── Master.ps1 ├── README.MD ├── buildManifests.ps1 ├── buildMaster.ps1 ├── dev/ │ ├── Install-sucklesscut.ps1 │ ├── Optimize-Apex.ps1 │ ├── Optimize-Apex2.ps1 │ ├── Optimize-CheatBreaker.ps1 │ └── Set-SteamLaunchOptions.ps1 ├── docs/ │ ├── Acronyms.md │ ├── Making your own tweakfuncs.MD │ ├── Making your own tweaklist.MD │ └── TweakFuncs.md ├── helpers/ │ ├── Assert-Choice.ps1 │ ├── Assert-Path.ps1 │ ├── FindInText.ps1 │ ├── Get-7zPath.ps1 │ ├── Get-Boolean.ps1 │ ├── Get-EncodingArgs.ps1 │ ├── Get-FunctionContent.ps1 │ ├── Get-HeaderSize.ps1 │ ├── Get-Path.ps1 │ ├── Get-ScoopApp.ps1 │ ├── Get-ShortcutTarget.ps1 │ ├── Install-FFmpeg.ps1 │ ├── Install-Scoop.ps1 │ ├── Invoke-Checkbox.ps1 │ ├── Invoke-NGENposh.ps1 │ ├── Invoke-Registry.ps1 │ ├── IsCustomISO.ps1 │ ├── Menu.ps1 │ ├── Merge-Hashtables.ps1 │ ├── New-Shortcut.ps1 │ ├── PauseNul.ps1 │ ├── Prompt.ps1 │ ├── PsInI/ │ │ ├── Get-IniContent.ps1 │ │ ├── Out-IniFile.ps1 │ │ └── README.MD │ ├── Set-Choice.ps1 │ ├── Set-Title.ps1 │ ├── Set-Verbosity.ps1 │ ├── SteamTools/ │ │ ├── ConvertFrom-VDF.ps1 │ │ ├── ConvertTo-VDF.ps1 │ │ ├── Get-SteamGameInstallDir.ps1 │ │ ├── Get-SteamLibraryFolders.ps1 │ │ ├── Get-SteamPath.ps1 │ │ └── README.MD │ ├── Test-Admin.ps1 │ ├── Write-Color.ps1 │ ├── Write-Diff.ps1 │ └── Write-Menu.ps1 └── modules/ ├── Add-ContextMenu.ps1 ├── Block-RazerSynapse.ps1 ├── Check-XMP.ps1 ├── Combos/ │ └── CB-CleanTaskbar.ps1 ├── Game & Program tuners/ │ ├── Optimize-Bedrock.ps1 │ ├── Optimize-LunarClient.ps1 │ ├── Optimize-OBS.ps1 │ └── Optimize-OptiFine.ps1 ├── Import-Sophia.ps1 ├── Installers/ │ ├── Aetopia's utils/ │ │ ├── Install-NVCPL.ps1 │ │ └── Install-ZetaLoader.ps1 │ ├── Get-GraalVM.ps1 │ ├── Get-TLShell.ps1 │ ├── Get.ps1 │ ├── Install-MPVProtocol.ps1 │ ├── Install-Voukoder.ps1 │ ├── Invoke-SmoothiePost.ps1 │ ├── Invoke-SmoothieRsPost.ps1 │ └── Launch.ps1 ├── Invoke-GitHubScript.ps1 ├── Miscellaneous/ │ ├── 4K-Notifier.ps1 │ └── Moony2.ps1 ├── New-ContextMenu.ps1 ├── One-liners/ │ └── Remove-DesktopShortcuts.ps1 ├── Remove-ContextMenu.ps1 ├── Remove-FromThisPC.ps1 ├── RemovePackBangs.ps1 ├── Set-CompatibilitySettings.ps1 ├── Set-MenuShowDelay.ps1 ├── TweakList.ps1 └── Windows/ ├── Remove-KnownAppxPackages.ps1 ├── Remove-UselessFiles.ps1 ├── Set-PowerPlan.ps1 └── Set-Win32PrioritySeparation.ps1