Last active 1515515840

Wrapper for MPV that picks up icy-title updates and tells notify-send about them

mpv-icy-notify.sh Raw
1#!/bin/bash
2mpv http://stream 2>&1 | while read p; do if [[ "$p" != "A: "* ]]; then echo $p; fi; if [[ "$p" == *"icy-title:"* ]]; then notify-send "$(echo $p | cut -d' ' -f2-)"; fi; done