Skip to content

Instantly share code, notes, and snippets.

@thalesmg
Created August 30, 2019 19:38
Show Gist options
  • Save thalesmg/961914ecd431ace7b4541344a340b92c to your computer and use it in GitHub Desktop.
Save thalesmg/961914ecd431ace7b4541344a340b92c to your computer and use it in GitHub Desktop.
Mute/unmute sounds
#!/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