Skip to content

Instantly share code, notes, and snippets.

@minio
Created December 5, 2014 17:22
Show Gist options
  • Save minio/3d6f4e4fb963a7006a20 to your computer and use it in GitHub Desktop.
Save minio/3d6f4e4fb963a7006a20 to your computer and use it in GitHub Desktop.
subUnitIndex := "1"
deviceType := "playback"
changeTrayIcon() {
muteSetting := VA_GetMute(subUnitIndex, deviceType)
icon := ""
if (muteSetting) {
icon := "off"
} else {
icon := "on"
}
Menu, Tray, Icon, C:\Users\Minio\microphone_%icon%.ico
}
changeTrayIcon()
#z::
VA_SetMute(!VA_GetMute(subUnitIndex, deviceType), subUnitIndex, deviceType)
changeTrayIcon()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment