Guest User

Untitled

a guest
Oct 15th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #!/bin/bash
  2. mute=`amixer get Master | grep "Front Left:" | awk '{print $7}'`
  3. if [ $mute == "[on]" ]
  4. then
  5. vol=`amixer get Master | grep "Front Left:" | awk '{print $5}' | tr -d '[]'`
  6. if [ $vol == "0%" ]
  7. then
  8. echo "Mute"
  9. else
  10. echo $vol
  11. fi
  12. else
  13. echo "Mute"
  14. fi
Add Comment
Please, Sign In to add comment