rice/eww/test.sh
2021-11-03 01:14:21 -07:00

9 lines
213 B
Bash

#!/usr/bin/env bash
teststr=$(mpc current -f "%file%")
echo "$teststr"
artist=$(echo "$teststr" | awk -F "/" '{print $1}')
album=$(echo "$teststr" | awk -F "/" '{print $2}')
echo "ARTIST: $artist ALBUM: $album"