Skip to content

Instantly share code, notes, and snippets.

View Frequency21's full-sized avatar
🦔
Focused

Kiss Olivér Frequency21

🦔
Focused
View GitHub Profile
@Frequency21
Frequency21 / disable-alt-codes.ahk
Last active May 1, 2024 08:38
Disable numpad alt codes on windows with AutoHotkey
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
!NumPadEnd::SendInput , !{End}
!NumPadDown::SendInput , !{Down}
!NumPadPgDn::SendInput , !{PgDn}
!NumPadLeft::SendInput , !{Left}
!NumPadRight::SendInput , !{Right}