oxhak

volume.sh

Aug 22nd, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. case $1 in
  4. down)
  5. amixer -D pulse set Master 5%- unmute
  6. ;;
  7. up)
  8. amixer -D pulse set Master 5%+ unmute
  9. ;;
  10. mute)
  11. amixer -D pulse set Master toggle
  12. ;;
  13. esac
Advertisement
Add Comment
Please, Sign In to add comment