/etc/gEDA/system-gsymcheckrc is in geda-gsymcheck 1:1.6.2-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 39 40 41 42 43 44 45 46 47 48 49 | ;
; Init file for gsymcheck
;
; ;'s are comments
; keywords are case sensitive (guile feature)
; mode strings are case sensitive
; colors are not case sensitive
;
; gsymcheck-version string
;
; Specifies the version of this file. This number is used to make sure
; that the rc file is compatible with the version of gschem that is
; being run. The end user should *not* change this value.
;
(gsymcheck-version "20110115")
; Setup data path variables.
;
; Contains all paths needed for gsymcheck
(define gedadata (getenv "GEDADATA"))
(define gedadatarc (getenv "GEDADATARC"))
;
; End of mode related keywords
;
;
; Start of path related keywords
;
;
; End of path related keywords
;
; world-size width height border
;
; Specifies the size of the world and a border
; Be sure all inputs are reals (floats/doubles) and don't try to reverse
; the values: to get a portrait mode. Code to support that needs to be added
; The code that implements this automatically transforms the dimensions into
; the proper aspect ratio. All units are in inches.
; This is not the paper size. That is specified elsewhere. End users should
; not change this at all
;
(world-size 120.0 90.0 1.0)
;(world-size 60.0 45.0 1.0)
|