From 9c773a5d1c64bc3c772fef1ae660bffb9f1691f4 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Mon, 12 May 2025 04:40:15 -0500 Subject: copying relevant dotfiles from linux install --- dotfiles/system/.local/bin/mpd_play_yt_stream | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 dotfiles/system/.local/bin/mpd_play_yt_stream (limited to 'dotfiles/system/.local/bin/mpd_play_yt_stream') diff --git a/dotfiles/system/.local/bin/mpd_play_yt_stream b/dotfiles/system/.local/bin/mpd_play_yt_stream new file mode 100755 index 0000000..b53f298 --- /dev/null +++ b/dotfiles/system/.local/bin/mpd_play_yt_stream @@ -0,0 +1,14 @@ +#!/bin/bash +# +MYHOST='127.0.0.1' # or your MPD host + +mpduri="$(yt-dlp -f best -g $1)#" +# mpduri="$(yt-dlp -g $1)#" +# TAG=$(yt-dlp -i --get-filename $1) +# cadena="{\"title\":\"$TAG\"}" +# echo "$cadena" +# mpduri="$mpduri$cadena" +# echo "$mpduri" +mpc insert "$mpduri" +mpc next +mpc play -- cgit v1.2.3