3 ; system.gwaverc: default standard startup configuration for gwave.
5 ; Gwave configuration and scripting is done in guile; the GNU extension
6 ; language, which is an implementation of the scheme dialect of lisp.
7 ; see http://www.gnu.org/software/guile/
8 ; for generic information on Guile.
10 ; To personalize gwave, copy this system.gwaverc file to
11 ; $HOME/.gwaverc, and edit as appropriate.
14 ; dbprint messages are printed only when debug is enabled with -x option.
15 (dbprint "in system.gwaverc\n")
18 (read-enable 'positions)
20 ; Uncomment this to turn off tooltips (those popup hints on buttons).
21 ;(gtk-tooltips-disable gwave-tooltips)
23 ; An example of loading an additional module of guile code.
25 ; this particular one creates another pullown menu, with some debugging items.
26 ; (app gwave extra-menus)
27 ; modules can also be created that contain additional hardcopy-plot backends
28 ; (app gwave export-myplotter)
31 ; Number of initial wave panels to create.
32 (set! initial-panels 2)
34 ; wavepanel type: 0=original, tall, with min/max labels. Good for analog.
35 ; 1=short, no extra labels. Fit more panels for digital.
37 (set! default-wavepanel-type 0)