#!/usr/bin/php 15) { $string = substr($string, 0, 15).'…'; } return $string; } $title = cleanUp(shell_exec('playerctl -p spotify metadata xesam:title')); $artist = cleanUp(shell_exec('playerctl -p spotify metadata xesam:artist')); $label = sprintf('%s – %s', $title, $artist); $fullText = sprintf('%s – %s', $title, $artist); echo block( 'spotify', [ 'full_text' => $fullText, 'color' => color('music'), ] );