User:Yoana Buzova/ prototyping1: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "<source lang="bash"> #!/bin/bash ## set volume to gradually increase to 3/4 max while true; do for((i=0;i<100;i++)); do osascript -e "set volume output volume $i" done...")
 
No edit summary
 
Line 1: Line 1:
Gradually increases and decreases audio , play sound and then run
<source lang="bash">
<source lang="bash">
#!/bin/bash
#!/bin/bash

Latest revision as of 15:23, 28 October 2013

Gradually increases and decreases audio , play sound and then run

#!/bin/bash

## set volume to gradually increase to 3/4 max

while true;
do

	
	for((i=0;i<100;i++)); do
	osascript -e "set volume output volume $i"
	done
	for((i=100;i>0;i--)); do
	osascript -e "set volume output volume $i"
	done
done