#!/bin/bash playerctl --follow metadata --format '{{ title }}' | { while read -r nowplaying_title; do echo "${nowplaying_title}" | head -c 15; done }