summaryrefslogtreecommitdiff
path: root/audio_jack_plugged_in.sh
blob: af121a837ed84024d5da0964962cb3c2b35f55f5 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env sh

case "$3" in
plug)
    amixer sset Speaker off
    amixer sset 'Playback Polarity' Normal ;;
  unplug)
    amixer sset 'Playback Polarity' 'R Invert'
    amixer sset Speaker on ;;
esac