From 5f16ab1c7e605e5b72646f62db3b06a589ebca3d Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 23 Mar 2011 17:18:58 -0400 Subject: Style and disclaimer. --- play.sh | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/play.sh b/play.sh index 4bdf959..2c53ec4 100755 --- a/play.sh +++ b/play.sh @@ -1,21 +1,32 @@ -pid=0; - +#!/bin/sh + +echo "===========================================" +echo "== Fox News Sequencer ==" +echo "== ------------------ ==" +echo "-- Clips are property of Fox News --" +echo "-- http://bit.ly/dTptl4 --" +echo "-- Music is property of Jason Donenfeld --" +echo "-- http://jasondonenfeld.com --" +echo "-- --" +echo "-- By using you waive the right to disti --" +echo "-- bute anything made with this program. --" +echo "-------------------------------------------" +echo +echo echo "== keys ==" echo "- f - nutty" echo "- j - with love" echo "- n - graduate degree" echo "- v - young folks" echo "- h - sandwich" +echo "- ctrl+c - quit" echo -echo "--" -echo "-- by using this you agree that any thing --" -echo "-- made by it or its contents is not owned by you --" -echo "--" -echo - +echo -n "Keys: " aplay backing.wav >/dev/null 2>&1 & +pid=0 + while read -n 1 c; do if [ $c == "f" ]; then -- cgit v1.2.3-59-g8ed1b