dotfiles/.local/bin/pipe_nowplaying

9 lines
170 B
Plaintext
Raw Normal View History

2024-06-23 06:44:57 -04:00
#!/bin/sh
TEXT_COLOR="#fe8019"
PIPE_FILE="/tmp/pipe-nowplaying"
[ -p "$PIPE_FILE" ] || mkfifo "$PIPE_FILE"
2024-07-03 19:59:32 -04:00
echo "<fc=$TEXT_COLOR>$(mpc | head -n1)</fc>" >"$PIPE_FILE"