Page 1 of 2

Posted: Sat 22 Mar 2008, 08:09
by zigbert
vovchik

Will you please post your hacked code. Since I can't reproduce the trouble, it is hard to test if my coding works.

Nice pops!

Sigmund

Hacked script

Posted: Sat 22 Mar 2008, 12:15
by vovchik
Dear Sigmund,

Here is the hacked code. I've restructured the first script so as to be able to understand more clearly the underlying logic. While most of the changes are not salient, you can see my old-school Pascal mania resurfacing.:). I introduced, among a few vars, mygeometry - which facilitates tweaking - and sound_high and sound_low, softcoded pointers to sound files to permit easy customization, in addition to the gtkrc hack. The only change introduced in the second script, as I recall, is the softcoding of the sound file vars. Please have a look. I'm interested whether the modded code runs fine on your machine.

With kind regards,
vovchik

Rev with parameter checking

Posted: Sat 22 Mar 2008, 15:34
by vovchik
Dear Sigmund,

Here is a slight revision that includes a very primitive parameter check. I noted that my earlier version ignored the "-s" parameter. The benefit of this mod, apart from properly passing the command line parameter, is that it provides a very rudimentary help - both on the command line and using Xdialog.

With kind regards,
vovchik

Posted: Sat 22 Mar 2008, 21:13
by zigbert
Thank you, vovchik.

Posted: Sun 23 Mar 2008, 11:23
by trapster
Working great now with vovchick's script.
I was getting the repeating list of time like Lobster was.

I had to comment out line 38 in pstopwatch_counter due to "true" showing up in the tenths spot.

I also added a colon (":") before $TENTH in line 40:
echo -e "$MIN:$NULL$SECONDS:$TENTH" >> /tmp/pstopwatch-clock

Image

Posted: Sun 23 Mar 2008, 17:03
by zigbert
Version 0.5

Thanks for all input
Please report both success and failures

Sigmund

A few suggestions

Posted: Sun 23 Mar 2008, 21:54
by vovchik
Dear Sigmund,

I looked at 0.5 and have the following comments:

1. Your last rev does not preserve the user's GTK style - my last rev does that (see screenshot). You need to include $HOME/.gtkrc-2.0 include, otherwise the app will look foreign on any system where the GTK theme is not identical to yours.

2. My last rev also included a change of geometry when tenths are disposed of. The window should shrink accordingly (i,e, automatically). Also, you should echo - in the case of the -s parameter - only the minutes and seconds to the logfile. This can be done by introducing a check of the value of the $TENTH variable in an "if" construction so as not to disrupt the smaller window x dimension by string overflow.

3. Apart from that, it works fine, but I am still testing and trying out a few tweaks.

With kind regards,
vovchik

Posted: Sun 23 Mar 2008, 22:26
by zigbert
I don't know how you get your choosen gtk-theme to appear. Here is a picture of Ptimer with my default stardust gtk-theme. Then it shows your Pstopwatch which shows the standard gtk-theme. My Pstopwatch above with a stripped gtk-theme.

Image


:? :? :? :? :?
Sigmund

GTK theme

Posted: Sun 23 Mar 2008, 23:01
by vovchik
Dear Sigmund,

Here is my .gtkrc-2.0 file:

Code: Select all

# -- THEME AUTO-WRITTEN DO NOT EDIT
include "/usr/share/themes/MacOS-X/gtk-2.0/gtkrc"

style "user-font" {
	font_name = "DejaVu Sans 12"
}

widget_class "*" style "user-font"

gtk-font-name="DejaVu Sans 12"

include "/root/.gtkrc.mine"

# -- THEME AUTO-WRITTEN DO NOT EDIT
The first include in $HOME/.gtkrc-2.0 gives the location of the theme in use for a particular user, and that should be the case for all standard gtk2 installations. The second include points to .gtkrc.mine, which is usually empty (in my case, at least). The gtk theme setup in puppy 3.01 is non-standard in some way, unfortunately, and really tries to force stardust on the user (using the settings in /etc), which is not a particularly good approach (it was different in the 2.x series). I struggled for a bit until I found out what was going on and found a means by which I could circumvent this 3.x automatism. I imagine others, such as trapster, have done the same.

With kind regards,
vovchik

Posted: Mon 24 Mar 2008, 07:22
by zigbert
the problem is that there is no /root/.gtkrc on my system.

Posted: Mon 31 Mar 2008, 01:00
by Lobster
Glad to hear Barry is adding it to Dingo :)
Would it be possible to add a tally counter?
(laps, repetitions etc)

Code: Select all

#!/bin/bash 
# tally counter v 0.1
# Lobster March 2008

NUMBER=0
PRESS_RETURN=1
   
    echo Press enter after each repetition        
    echo ctrl + c to end        

 while PRESS_RETURN=1 
 do
 read -e PRESS_RETURN
  if PRESS_RETURN=" " ; then 
         NUMBER=$[NUMBER+1]
    echo Your count for this practice is $NUMBER repetitions      
  fi
 done

Posted: Tue 01 Apr 2008, 11:19
by zigbert

Code: Select all

Would it be possible to add a tally counter?
I thought everything was possible :?

Added to the todo-list. I'm not sure how it should be solved, but let's see...

Posted: Tue 01 Apr 2008, 21:26
by trapster
Here is a command line bash script for laps and split times.

Posted: Wed 02 Apr 2008, 09:32
by zigbert
Interesting!

Posted: Sun 06 Apr 2008, 06:57
by zigbert
Version 0.6 is uploaded. See main post.

This is a bugfix-release.

Changelog
- Less flicker on clock.
- Less flicker on stopwatch when tenth is not used.
- Integration with Ptimer.
- Removed menu entry in *.pet
- Bugfix: Kill external program which plays alarm.
- Bugfix: Window height in Puppy4
- Bugfix: Better parameter control

version 0.6 missing?

Posted: Sun 06 Apr 2008, 11:04
by vovchik
Dear Sigmund,

I looked for version 0.6 in the first post and saw only version 0.5. Am I blind?

With kind regards,
vovchik

Posted: Sun 06 Apr 2008, 11:53
by zigbert
vovchik
It seems that you're the one who are awake here. :)
Link fixed

Sigmund

Posted: Wed 09 Apr 2008, 00:44
by disciple
Laps and split times would be nice :)
A pause button would be good too. And an option to start straight away, without the count down. But I think you have more important projects at the moment...

Posted: Wed 09 Apr 2008, 17:50
by zigbert
But I think you have more important projects at the moment...
Yes, you're right. Let's take this one in next round.

Posted: Wed 09 Apr 2008, 23:20
by trapster
And an option to start straight away, without the count down
.

If you don't want the countdown coment out the following lines from /usr/local/pstopwatch/pstopwatch_counter.

Code: Select all

#countdown to sync stopwatch to a whole second
#SEC_START=`date +%s`
#COUNTDOWN=3
#COUNT=1
#while [ $COUNT -lt 5 ]; do
#	SEC_NOW=`date +%s`
#	SECONDS=`expr $SEC_NOW - $SEC_START`
#	if [ $SECONDS = $COUNT ] && [ $SECONDS -gt 0 ]; then
#		echo "00:0$COUNTDOWN:00" >> /tmp/pstopwatch-clock
#		if [ $COUNT -lt 4 ]; then
#			aplay /usr/share/audio/bark.au > /dev/null 2>&1
#		fi
#		COUNTDOWN=`expr $COUNTDOWN - 1`
#		COUNT=`expr $COUNT + 1`
#	fi
#done