#!/bin/sh TEXT_COLOR="#fe8019" PIPE_FILE="/tmp/pipe-nowplaying" [ -p "$PIPE_FILE" ] || mkfifo "$PIPE_FILE" echo "$(mpc | head -n1)" >"$PIPE_FILE"