hi
This commit is contained in:
15
scripts/mediaplayer2
Executable file
15
scripts/mediaplayer2
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
TRACK=$(playerctl metadata title) # Command to get track
|
||||
ARTIST=$(playerctl metadata artist) # Command to get artist
|
||||
ALBUM=$(playerctl metadata album) # Command to get album
|
||||
|
||||
MAXCHAR="128" # Maximum characters allowed in string
|
||||
|
||||
if [ ${CONCISE} == "false" ]; then
|
||||
printf "%.${MAXCHAR}s\n" "${TRACK} - by ${ARTIST} - on ${ALBUM}"
|
||||
elif [ ${CONCISE} == "true" ]; then
|
||||
printf "%.${MAXCHAR}s\n" "${ARTIST} - ${TRACK}"
|
||||
else
|
||||
printf "error: 'CONCISE' must be defined in i3blocks config\n"
|
||||
fi
|
||||
Reference in New Issue
Block a user