/usr/share/tkinspect/defaults.tcl is in tkinspect 5.1.6p10-5.
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 | #
# $Id: defaults.tcl,v 1.5 1995/06/02 06:46:57 sls Exp $
#
proc tkinspect_default_options {} {
global tkinspect_default
option add *Scrollbar*width 12
option add *Label*padX 0
option add *Label*padY 0
option add *Label*borderWidth 0
option add *Frame.highlightThickness 0
option add *Frame.borderWidth 2
option add *Menubutton.borderWidth 0
option add *Command_line.highlightThickness 0
option add *Command_line.borderWidth 2
option add *Tkinspect_main.highlightThickness 0
option add *Procs_list.patterns {
^tk[A-Z].*
^auto_.*
}
option add *Globals_list.patterns {
^tkPriv.*
^auto_.*
^tk_.*
}
}
|