Skip to content

Instantly share code, notes, and snippets.

@ahmadalli
Last active June 28, 2018 09:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmadalli/da9d468990555b6acb05e0dc044bb762 to your computer and use it in GitHub Desktop.
Save ahmadalli/da9d468990555b6acb05e0dc044bb762 to your computer and use it in GitHub Desktop.
AutoHotKey scripts used for making my day to day life easier
; clicks on 'ok' on the annoying prmpt when you're trying to change a file's extension on windows explorer
#InstallKeybdHook
While, 1
{
WinWaitActive, Rename ahk_class #32770
send y
}
; Adding CapsLock + Arrow Keys as `Home`, `End`, `Page Up`, and `Page Down` shortcuts.
; It's useful in Asus GL503 Keyboard which you can't use numpad and these keys (except for `Home`) simultaneously
CapsLock & Left::Home
CapsLock & Right::End
CapsLock & Up::PgUp
CapsLock & Down::PgDn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment