void/scripts/cmus-now

5 lines
381 B
Plaintext
Raw Normal View History

2024-02-28 22:45:58 -05:00
#!/bin/sh
# cmus 'now playing' notifications in dunst - developed by acidvegas (https://git.acid.vegas/void)
artist=`cmus-remote -Q | grep --text '^tag artist' | sed '/^tag artistsort/d' | awk '{gsub("tag artist ", "");print}'`
title=`cmus-remote -Q | grep --text '^tag title' | sed -e 's/tag title //' | awk '{gsub("tag title ", "");print}'`
notify-send "♫ $artist - $title"