Created
August 30, 2019 19:38
-
-
Save thalesmg/961914ecd431ace7b4541344a340b92c to your computer and use it in GitHub Desktop.
Mute/unmute sounds
This file contains 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
#!/bin/bash | |
mute () { | |
amixer -c 0 sset Speaker mute | |
amixer -c 0 sset Mic mute | |
amixer -c 1 sset Master mute | |
amixer -c 1 sset Headphone mute | |
} | |
unmute () { | |
amixer -c 0 sset Speaker unmute | |
amixer -c 0 sset Mic unmute | |
amixer -c 1 sset Master unmute | |
amixer -c 1 sset Headphone unmute | |
} | |
case "$1" in | |
mute) | |
mute | |
;; | |
unmute) | |
unmute | |
;; | |
*) | |
;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment