diff options
Diffstat (limited to 'bin/player')
-rwxr-xr-x | bin/player | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -120,8 +120,8 @@ formatted_player_title() { sed 's|^.*/home/andreh/Downloads/||' )" fi - if [ ${#TITLE} -gt 82 ]; then - printf '%s...\n' "$(printf '%s' "$TITLE" | head -c 80)" + if [ ${#TITLE} -gt 62 ]; then + printf '%s...\n' "$(printf '%s' "$TITLE" | head -c 60)" else printf '%s\n' "$TITLE" fi |