Skip to content

Instantly share code, notes, and snippets.

@Qalthos
Last active December 18, 2015 18:39
Show Gist options
  • Save Qalthos/5826866 to your computer and use it in GitHub Desktop.
Save Qalthos/5826866 to your computer and use it in GitHub Desktop.
Put somewhere in $PATH and give it the location of buzzer.ogg
#!/bin/bash
vol_perc=$(amixer get Master | egrep -o '[0-9]+%' | head -n 1)
mute=$(amixer get Master | egrep -o '\[off\]' | head -n 1)
amixer -q set Master 100% unmute
mplayer buzzer.ogg
amixer -q set Master $vol_perc $(if [ ! -z $mute ]; then echo 'mute'; fi)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment