mirror of
git://git.acid.vegas/random.git
synced 2024-12-04 21:46:40 +00:00
4 lines
282 B
Bash
Executable File
4 lines
282 B
Bash
Executable File
#!/bin/sh
|
|
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" |