Accelerator GUI
The Accelerator GUI is implemented in Tcl/Tk. By editing the file, the appearance can be customized and extra elements can be added. The customization file is gui.tcl, which located in the server configuration directory (normally $VOVDIR/../../vnc/vnc.swd/gui.tcl).
#
# This is a fragment of vnc.swd/gui.tcl
# to demonstrate the customizability of the NC GUI.
#
if [info exists env(SIMPLEDEMO)] {
button .demo -text "Simple Customization Demo" -command {
puts "You can run any command you want."
}
pack .demo -side bottom -fill x -expand 0
}
% env SIMPLEDEMO=1 nc gui &