FollieHiyuki-dotfiles/home/.local/bin/info/mpdsong
2021-02-13 19:28:59 +03:00

12 lines
225 B
Bash
Executable File

#!/bin/sh
song=$(mpc --format "[[%title% - ]%artist%]|[%file%]" current)
len=$(echo "$song" | awk '{print length}')
if [ "$len" -gt 40 ]
then
song=$(echo "$song" | head -c 38)
echo "$song.."
else
echo "$song"
fi