Notices


Reply
Thread Tools
Posts: 20 | Thanked: 0 times | Joined on Jun 2009
#11
Originally Posted by Den in USA View Post
Yes, Eggtimer can do 1 minute time-outs. Just slide the “minutes” center bar all the way down.
Youīre right, Den... But I donīt want that pop up window saying that time ran out... I just a need a beep or two, without any intervention of mine (like hitting the Close button).
 
Posts: 20 | Thanked: 0 times | Joined on Jun 2009
#12
Oh, one more thing guys. I am also looking for a friendly interface for this one, since I am not the one whoīs going to use it. Something easy like pocket doan (they call it a "meditation timer") - http://www.freewarepalm.com/clock/pocketdoan.shtml
I do have garnet vm, but I would love to have something similar for maemo...
 
tso's Avatar
Posts: 4,783 | Thanked: 1,253 times | Joined on Aug 2007 @ norway
#13
maybe someone could get this back in working order?
https://garage.maemo.org/projects/maetronome/
 

The Following 2 Users Say Thank You to tso For This Useful Post:
Framstag's Avatar
Posts: 72 | Thanked: 51 times | Joined on Jul 2008 @ Germany
#14
Kandis (http://maemo.org/downloads/product/OS2008/kandis/) also does "noise" after some configurable amount of time.
 

The Following User Says Thank You to Framstag For This Useful Post:
tso's Avatar
Posts: 4,783 | Thanked: 1,253 times | Joined on Aug 2007 @ norway
#15
yes, but neither kandis norr eggtimer do automaatic repeats without human intervention...
 
Posts: 20 | Thanked: 0 times | Joined on Jun 2009
#16
yep, and I donīt want it. TBH it is a little bit stupid, because if I want it to repeat, it means that I donīt wanna do any intervention. Just beep it every minute!
 
qwerty12's Avatar
Posts: 4,274 | Thanked: 5,358 times | Joined on Sep 2007 @ Looking at y'all and sighing
#17
Originally Posted by tso View Post
maybe someone could get this back in working order?
https://garage.maemo.org/projects/maetronome/
If one recompiles OS2008's ESD, and LD_PRELOADs the esddsp from there, GTick runs. But the GTick package is horribly done (sorry, but it has to be said and if it worked (see below) I would waste a couple of hours fixing it) and pressing "Start" works fine. Pressing "Stop", on the other hand, does not work and causes GTick to lock up and for you to hear the tick for as long as the program is running (and, like I already said, it locks up ). It's also not hildonized (I would be willing to do the basic if it worked).

Last edited by qwerty12; 2009-08-06 at 09:59.
 
Posts: 67 | Thanked: 13 times | Joined on Feb 2008 @ U.S.A.
#18
Originally Posted by RevenanT View Post
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?
Go to http://www.epochconverter.com/ and get the epoch time that you want it to start at.

Then type:
Code:
  apt-get install alarmtool && \
    alarmtool -a -boot --recurr 1 --recurr-count 30 \
    --time 1250625000
That will sound the alarm every min, 30 times, starting at epoch time 1250625000.

If you want it to do that forever, type:
Code:
  alarmtool -a -boot --recurr 1 --recurr-count -1 \
    --time 1250625000
To stop it, type:
Code:
  alarmtool -r 1250625000
It's important to remember the epoch time, because it becomes the "cookie" that's associated with the event.

There is no way to find out the cookie after you schedule the event because of this bug: https://bugs.maemo.org/show_bug.cgi?id=4935

And it would be resilient to power offs, so it could be a nasty trick to play on a fellow tablet user.
 

The Following 2 Users Say Thank You to jgombos For This Useful Post:
qwerty12's Avatar
Posts: 4,274 | Thanked: 5,358 times | Joined on Sep 2007 @ Looking at y'all and sighing
#19
@jgombos

Maybe it is listed in: /var/lib/alarmd/alarm_queue.xml
 

The Following User Says Thank You to qwerty12 For This Useful Post:
Posts: 67 | Thanked: 13 times | Joined on Feb 2008 @ U.S.A.
#20
That's pretty useful qwerty12. I had a huge number of events, many of which used the same cookie. I tried this command to clear them out gracefully:

sed -ne 's/[^>]*cookie[^>]*>\([[:digit:]]*\)<.*/\1/pg' \
/var/lib/alarmd/alarm_queue.xml | sort | uniq | \
while read i; do alarmtool -r $i; done

But the /var/lib/alarmd/alarm_queue.xml file was not empty. Clearly alarmtool has issues.
 
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 09:45.