This is a small patch to the i8kmon program that I added so I can see at
a glance what the fans on my i8200 is doing.  Makes it a little more
useful as a monitor.

I removed from the patch my swicth to turn off "auto"  I want it to monitor
not do the job itself.  You never said why it you should let it do the fan
control instead of the BIOS.

Anthony Thyssen ( System Programmer )    http://www.cit.gu.edu.au/~anthony/


21a22,23
> elif command -v wish >/dev/null 2>&1; then \
>     exec wish $0 -- "$@"; \
40c42
<     timeout	5
---
>     timeout	2
601c603,604
< 	.applet.lfan config -text {} -bg $bg -activebackground $ab
---
> 	.applet.lfan config -text {} -bg $bg \
> 	               -activebackground $ab
603c606,610
< 	.applet.lfan config -text $status(lstate) -bg red -activebackground red
---
> 	.applet.lfan config -text $status(lstate) -bg red \
> 	                            -activebackground red
>     } elseif {$status(lstate) == 1} {
> 	.applet.lfan config -text $status(lstate) -bg green \
> 	                            -activebackground green
605c612,613
< 	.applet.lfan config -text $status(lstate) -bg $bg -activebackground $ab
---
> 	.applet.lfan config -text $status(lstate) -bg dodgerblue \
> 	                            -activebackground dodgerblue
616c624,625
< 	.applet.rfan config -text {} -bg $bg -activebackground $ab
---
> 	.applet.rfan config -text {} -bg $bg \
> 	               -activebackground $ab
618c627,631
< 	.applet.rfan config -text $status(rstate) -bg red -activebackground red
---
> 	.applet.rfan config -text $status(rstate) -bg red \
> 	                            -activebackground red
>     } elseif {$status(rstate) == 1} {
> 	.applet.rfan config -text $status(rstate) -bg green \
> 	                            -activebackground green
620c633,634
< 	.applet.rfan config -text $status(rstate) -bg $bg -activebackground $ab
---
> 	.applet.rfan config -text $status(rstate) -bg dodgerblue \
> 	                            -activebackground dodgerblue
