From b7f74608ade06a3a4a579de62a579fd50badcaf3 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Tue, 28 Feb 2023 18:52:21 -0300 Subject: bin/player: Decrease synopsis length to 60 --- bin/player | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/player b/bin/player index 2479b88..f247806 100755 --- a/bin/player +++ b/bin/player @@ -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 -- cgit v1.2.3