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