Last active
January 30, 2025 09:24
-
-
Save tjone270/2a86894a1b0dd4dc0d703271728316b9 to your computer and use it in GitHub Desktop.
Configuration for Quake Live for keybinds which control volume.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Audio level control | |
alias volup "cvarAdd s_volume 0.05; cvarAdd s_voiceVolume 0.05; print Volume ^2+^7" | |
alias voldown "cvarAdd s_volume -0.05; cvarAdd s_voiceVolume -0.05; print Volume ^3-^7" | |
alias volmute "set s_volume 0; set s_voiceVolume 0; print Volume ^1X^7" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment