🧰 AutoHotkey v2
Volume Control Hotkeys
Ctrl+Alt+Up/Down adjusts system volume in small steps, Ctrl+Alt+M toggles mute — useful on keyboards without dedicated media keys.
VolumeHotkeys.ahk
; ============================================================
; VolumeHotkeys.ahk
;
; Ctrl+Alt+Up -> Volume up
; Ctrl+Alt+Down -> Volume down
; Ctrl+Alt+M -> Mute toggle
;
; Requirements: AutoHotkey v2 (https://www.autohotkey.com/)
; ============================================================
#Requires AutoHotkey v2.0
^!Up::SoundSetVolume("+5")
^!Down::SoundSetVolume("-5")
^!m::SoundSetMute(-1)