From 2402863dffe3c50ae0d7968253ce1f0ceae9a1c1 Mon Sep 17 00:00:00 2001 From: Steven Saus Date: Wed, 9 Jan 2019 23:05:02 -0500 Subject: [PATCH] Fixed typo, added url for briefing explanation --- README.md | 8 ++++---- briefing.sh | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1dfc07f..3ade586 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # multiple_scripts -Multiple scripts that are useful but don't deserve their own repository. +Multiple scripts that are useful but don't deserve their own repository. - -# briefing.sh +## briefing.sh Used along with Podfox to create a daily briefing without involving -Google or Amazon or Apple. +Google or Amazon or Apple. The post detailing this is at +[ideatrash](https://ideatrash.net/?p=69528). diff --git a/briefing.sh b/briefing.sh index 427abd1..cd7af07 100644 --- a/briefing.sh +++ b/briefing.sh @@ -18,5 +18,5 @@ find ~/podcasts -name '*.mp3' -exec mv {} ~/briefing/$today \; # This does not seem to work with ~/ for $HOME, so I've put the full user # path here. -playlist='/home/user/briefing/play.m3u' ; if [ -f $playlist ]; then rm $playlist ; fi ; for f in /home/steven/briefing/$today/*.mp3; do echo "$f" >> "$playlist"; done +playlist='/home/user/briefing/play.m3u' ; if [ -f $playlist ]; then rm $playlist ; fi ; for f in /home/user/briefing/$today/*.mp3; do echo "$f" >> "$playlist"; done mplayer -playlist "$playlist"