Removed commit history

Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
This commit is contained in:
Marko Korhonen 2019-10-26 20:05:31 +03:00
commit b5b33afcd7
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5
199 changed files with 36930 additions and 0 deletions

9
home/Scripts/metadata.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
ARTIST=$(playerctl metadata | grep 'xesam:artist' | cut -d' ' -f5- | sed 's/^[ \t]*//')
TITLE=$(playerctl metadata title)
if [ -n "$ARTIST" ]; then
echo "$ARTIST - $TITLE"
else
echo "$TITLE"
fi