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
| # --- Timing state --- | |
| $global:__lastStart = $null | |
| $global:LastCommandDuration = [timespan]::Zero | |
| $global:LastExitStatus = $null | |
| # Record start time each time Enter is pressed | |
| Set-PSReadLineKeyHandler -Key Enter -BriefDescription 'AcceptLineWithTimer' -ScriptBlock { | |
| $global:__lastStart = Get-Date | |
| [Microsoft.PowerShell.PSConsoleReadLine]::AcceptLine() | |
| } | Out-Null |
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
| Computer Information: | |
| Manufacturer: ASUS | |
| Model: System Product Name | |
| Form Factor: Desktop | |
| No Touch Input Detected | |
| Processor Information: | |
| CPU Vendor: AuthenticAMD | |
| CPU Brand: AMD Ryzen 9 9950X3D 16-Core Processor | |
| CPU Family: 0x1a |
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
| ; Requires VA >= 2.3 https://www.autohotkey.com/board/topic/21984-vista-audio-control-functions/ | |
| ; Requires https://bluetoothinstaller.com/bluetooth-command-line-tools/BluetoothCLTools-1.2.0.56.exe | |
| #SingleInstance | |
| #Include %A_ScriptDir%\VA.ahk | |
| SendMode Input | |
| ; Shogun 2 bind for borderless: | |
| ; F12 & MButton:: |
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
| var secondsToWait = 30; | |
| var secondsWaited = 0; | |
| var introMsg = "M24"; | |
| var chatText; | |
| var resps; | |
| var yourlines; | |
| var strangerlines; | |
| var chatStarted = false; |