Notes Windows automation

My AutoHotkey Shortcuts

A small AutoHotkey script that keeps frequent actions under the keyboard: media controls, volume, cursor centering, and quick Notepad launch.

Most Used Bindings

  • Alt + Left: previous track.
  • Alt + Right: next track.
  • Alt + Down: play or pause.
  • Alt + PageUp / Alt + PageDown: volume control.
  • Alt + C: move the mouse to the center of the main screen.
  • Alt + N: open Notepad.

Script

; --- Media Controls ---
!Left::Media_Prev
!Right::Media_Next
!Down::Media_Play_Pause

; --- Volume Control ---
!PgUp::Send {Volume_Up}
!PgDn::Send {Volume_Down}
!m::SoundSet, +1, , Mute

; --- Utilities ---
!n::Run Notepad

!c::
CoordMode, Mouse, Screen
MouseMove, A_ScreenWidth/2, A_ScreenHeight/2
return

The script lives in Windows startup because the shortcuts became as natural as copy and paste. The repository is available at citrustiara/AHK_Shortcuts.