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
|
# ts_opt.tcl
set gparams(showicons) 1
# 0 -> no Icons, 1 -> show Icons beside the command buttons
set gparams(showprimary) 1
# 0 -> no Primary buttons, 1 -> show Primary beside the command buttons
set gparams(showout) 1
#PROF profile on
# Global variables
set gparams(foreground) blue
set gparams(font) courier
set gparams(fontsize) 12
set gparams(fontstyle) normal
set gparams(splang) english
set gparams(spenc) latin1
set gparams(hlplan) english
set gparams(termwidth) 80
set gparams(termheight) 25
set gparams(editwidth) 80
set gparams(editheight) 25
set gparams(tabstop) 8
set params(icon_dir) $TS_BASE/bitmaps
set params(global_paramfile) $TS_BASE/texshell.cfg
set params(template_dir) $TS_BASE/templates
set params(hlpdir) $TS_BASE/help
set params(version) $TS_VERSION
set params(Primary_dir) [pwd]
set params(Primary_file) ""
set params(Edit_file) ""
set params(pid) 0
set params(local_paramfile) $env(HOME)/.ts/ts9811.cfg
set params(template_index) $env(HOME)/.ts/templates.idx
set params(processlist) {}
set params(pr_first) ""
set params(pr_last) ""
set params(pr_copies) ""
set params(pr_xopt) ""
set params(pr_orientation) ""
set params(pr_pages) ""
|