#!/usr/bin/php $max) { $string = substr($string, 0, $max).'…'; } return $string; } $title = cleanUp(shell_exec('playerctl -p spotify metadata xesam:title')); $artist = cleanUp(shell_exec('playerctl -p spotify metadata xesam:artist')); $fullText = pspan($artist, '#ccc', '#222').pspan($title, '#ddd', '#000'); if (getenv('BLOCK_BUTTON') === '1') { shell_exec('i3-msg \'workspace "6. MEDIA"\''); } echo block( 'spotify', [ 'full_text' => $fullText, 'color' => color('music'), 'separator' => false, 'separator_block_width' => 0, ] );