Files
dotfiles/profiles/desktop/.config/i3/scripts/song.awk
Daniel Bauer ec15b8d3ac commit
2019-04-15 20:07:56 +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
}
}
}