![]() |
2009-08-02
, 04:41
|
Posts: 1,213 |
Thanked: 356 times |
Joined on Jan 2008
@ California and Virginia
|
#3
|
![]() |
2009-08-02
, 05:06
|
|
Posts: 49 |
Thanked: 102 times |
Joined on Jul 2009
@ 驚く為五郎
|
#4
|
Hello guys!
Iīm looking for an application that beeps after a given time, continuously. Letīs say that I need a beep every 1 minute, for 30 minutes. Is there anything like that?
for i in `seq 0 30` ; do echo $i min ; mplayer -really-quiet /usr/share/sounds/camera-video-record.wav ; sleep 60 ; done
> time mplayer /usr/share/sounds/camera-video-record.wav -really-quiet real 0m 0.41s
![]() |
2009-08-02
, 08:40
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#5
|
#include <unistd.h> #include <glib.h> #include <gtk/gtk.h> #include <hildon/hildon.h> int main (int argc, char *argv[]) { int i; if (!g_thread_supported ()) g_thread_init (NULL); gtk_init(&argc, &argv); for (i = 1; i<=30; i++) { hildon_play_system_sound("/usr/share/sounds/camera-video-record.wav"); sleep(60); } return 0; }
![]() |
2009-08-02
, 16:13
|
Posts: 20 |
Thanked: 0 times |
Joined on Jun 2009
|
#6
|
![]() |
2009-08-02
, 16:20
|
|
Posts: 1,390 |
Thanked: 642 times |
Joined on Nov 2007
@ California USA
|
#7
|
Whoa! I appreciate all the help, guys. I will give it a try this afternoon.
and btw, I have tried eggtimer, but it does not have the option to beep every minute.
Thanks!
![]() |
2009-08-02
, 16:20
|
|
Posts: 2,869 |
Thanked: 1,784 times |
Joined on Feb 2007
@ Po' Bo'. PA
|
#8
|
Whoa! I appreciate all the help, guys. I will give it a try this afternoon.
and btw, I have tried eggtimer, but it does not have the option to beep every minute.
Thanks!
![]() |
2009-08-02
, 16:22
|
Posts: 20 |
Thanked: 0 times |
Joined on Jun 2009
|
#9
|
I hit the thanks button for these guys because I have been assisted by them in the past and will pro'ly need assistance on something else in future. It's a good thing having members like them on board.
![]() |
2009-08-02
, 16:24
|
|
Posts: 1,390 |
Thanked: 642 times |
Joined on Nov 2007
@ California USA
|
#10
|
Iīm looking for an application that beeps after a given time, continuously. Letīs say that I need a beep every 1 minute, for 30 minutes. Is there anything like that?