Skip to content

Instantly share code, notes, and snippets.

@FindMuck
Created January 2, 2026 21:31
Show Gist options
  • Select an option

  • Save FindMuck/fdd7c476fc39cdb84775a7e377f0443b to your computer and use it in GitHub Desktop.

Select an option

Save FindMuck/fdd7c476fc39cdb84775a7e377f0443b to your computer and use it in GitHub Desktop.
Simple AHK enhancement tool for "Terminator by Aéza (Aeza)"
#NoEnv
; Setup of environment with Firefox browser installation in "Terminator by Aéza" for testing
; This script was made for simple copy-paste, as Aéza VMs currently lack this feature
; Hotkey: Ctrl + Shift + V
^+v::
; Wait for you to release the modifier keys (Ctrl/Shift) so they don't interfere
KeyWait, Control
KeyWait, Shift
KeyWait, v
if (Clipboard = "")
return
SendEvent, {Raw}%Clipboard%
SendEvent, {Enter}
return
^+a::
KeyWait, Control
KeyWait, Shift
KeyWait, a
; System animations menu (animations are typically turned off by default on Windows Server installations which affect browser animation rendering)
SettingsPath := "SystemPropertiesPerformance.exe"
; Type the path instantly
SendEvent, {Raw}%SettingsPath%
SendEvent, {Enter}
return
^+z::
KeyWait, Control
KeyWait, Shift
KeyWait, z
prompt = $ProgressPreference = "SilentlyContinue"; Invoke-WebRequest -Uri "https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US" -OutFile "$env:TEMP\firefox_setup.exe"; Start-Process "$env:TEMP\firefox_setup.exe" -ArgumentList "/S" -Wait; Start-Process "C:\Program Files\Mozilla Firefox\firefox.exe"
SendEvent, {Raw}%prompt%
SendEvent, {Enter}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment