Lightweight Windows audio automation engine. Standardize physical keyboard volume wheel rotations to strictly scale in precise 1% increments.
Intercepts default Windows kernel actions that push adjustments up by 2% to 4% intervals, forcing clean absolute steps instead.
Optimized background runtime loops ensure near-zero CPU and memory overhead processing inside Windows system tasks.
Can double as a native UI notification controller, intercepting default system overlays cleanly during intense gaming or audio mixing.
Run the standalone distribution package instantly without writing complex configuration profiles into your system registry.
This macro hooks your system audio channels directly. You can inspect the underlying mechanics below:
; VolumeTweak Audio Normalization Routine Core Loop
$Volume_Up::
SoundSet, +1
Return
$Volume_Down::
SoundSet, -1
Return