pilla la de python, suena como un 8bits.. hay que hacer unas mas y ponerlas segun procesos, horas, dias, estados.
---------- Forwarded message ---------- From: alejo d <[email protected]> Date: Tue, Jan 26, 2010 at 11:42 AM Subject: Re: beep To: alejo d <[email protected]> beep -n -f 1500 -l 1000 -n 200 -l 500 ############################################################# ############################################################# #!/usr/bin/env python import os #tunes for beeporama: (frequence,duration) tune1=[(1000,320),(900,10),(500,410),(400,10),(340,410),(300,10)] tune2=[(1000,10),(500,10),(440,20),(340,2),(720,4),(880,40)] tune=tune2 cmd='beep -f100 -l1 ' for i,j in tune: cmd=cmd + ' -n -f '+ str(i) + ' -l'+str(j) os.system(cmd) ############################################################# ############################################################# On Mon, Jan 25, 2010 at 9:37 PM, alejo d <[email protected]> wrote: > http://malditonerd.wordpress.com/2008/09/07/pelotudeando-con-beep-beep2/ > _______________________________________________ unloquer mailing list [email protected] https://lists.aktivix.org/mailman/listinfo/unloquer

