diff options
author | EuAndreh <eu@euandre.org> | 2023-02-28 18:52:21 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-02-28 18:52:21 -0300 |
commit | b7f74608ade06a3a4a579de62a579fd50badcaf3 (patch) | |
tree | 7d8b426071f1224c848e32c70a10865a1b12aac8 | |
parent | Revert "etc/guix/system.scm: Use patched xmonad" (diff) | |
download | dotfiles-b7f74608ade06a3a4a579de62a579fd50badcaf3.tar.gz dotfiles-b7f74608ade06a3a4a579de62a579fd50badcaf3.tar.xz |
bin/player: Decrease synopsis length to 60
-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 |