Lemur Pro nixos dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
177 B

2 years ago
  1. #!/bin/bash
  2. X=$(mpc status 2>/dev/null | grep "%)")
  3. if test $? -eq 0; then
  4. echo "$X" | awk '{ print $4 }' | awk -F% '{ print $1 }' | awk 'sub(/^.{1}/,"")'
  5. else
  6. echo "0"
  7. fi