---krish <[EMAIL PROTECTED]> wrote:
>
> Hi,
>       Is there any application that is like a tool bar where I can
customize
> each one. On clicking any, I launch an application
> Thanks
> Krishna
> 
> 
> 

You can create a tcl/tk script for that, here is an example:

#!/usr/bin/wish -f
button .b -text "app1" -command "exec <@stdin >@stdout app1"
button .b1 -text "app2" -command "exec <@stdin >@stdout app2 arg1 &"
button .b2 -text "netscape" -command "exec <@stdin >@stdout netscape  &"
button .b200 -text "quit" -command exit
button .b3 -text "app3" -command "exec <@stdin >@stdout app3  &"
button .b4 -text "app4" -command "exec <@stdin >@stdout app4  &"
button .b5 -text "app5" -command "exec <@stdin >@stdout app5 &"
pack .b -fill both
pack .b1 -fill x
pack .b2 -fill x
pack .b3 -fill x
pack .b4 -fill x
pack .b5 -fill x
pack .b200 -fill x




===
*****************************************
*  Renzo Alejandro Granados             *
*  Linux NetAdmin                       *
*  Bogota-Colombia                      *
*  http://members.xoom.com/renzoal      *
*  http://www.nettaxi.com/citizens/renzo*
*****************************************





_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com

Reply via email to