Files
dotfiles/.config/i3/scripts/song.awk
Daniel Bauer a807f5eb1e update
2018-09-14 11:56:02 +02:00

23 lines
469 B
Awk
Executable File

/string *"xesam:artist/{
while (1) {
getline line
if (line ~ /string "/) {
sub(/.*string "/, "artist:", line)
sub(/".*$/, "", line)
print line
break
}
}
}
/string *"xesam:title/{
while(1) {
getline line
if (line ~ /string "/) {
sub(/.*string "/, "title:", line)
sub(/".*$/, "", line)
print line
break
}
}
}