#!/bin/sh
while true
	do
		INPUT=$(zenity \
		--title "Jingle Box" \
		--text="Choose sound and doubleclick or hit OK" \
		--width=400 \
		--height=800 \
		--list \
		--column Sounds `ls | grep -Ei "(.wav|.mp3)"`)
	
		play $INPUT &
	done

