/usr/lib/swi-prolog/xpce/Defaults is in swi-prolog-x 6.6.4-2ubuntu1.
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 | ! XPCE 5.0 Class Variable defaults for colour and monochrome displays
! Author: Jan Wielemaker, University of Amsterdam
! Modified: Tue Dec 7 14:15:04 1999
! Added alias for symbol-font
! Modified: Jan 6, 2005
! Use internationalised fonts
!
! See README.customise before changing this file.
! Binding for the logical font-names. You can bind any name to any
! font here.
display.system_fonts: [ normal := font(helvetica, roman, 12), \
bold := font(helvetica, bold, 12), \
italic := font(helvetica, oblique, 12), \
small := font(helvetica, roman, 10), \
large := font(helvetica, roman, 14), \
boldlarge := font(helvetica, bold, 14), \
huge := font(helvetica, roman, 18), \
boldhuge := font(helvetica, bold, 18), \
fixed := font(screen, roman, 14), \
tt := font(screen, roman, 14), \
boldtt := font(screen, bold, 14) \
]
! This one is often slow on colour displays. Prefer the beep then.
*.visual_bell: when(@colour_display, @off, @on)
! Set this to @on if you want searching in the editor to be case-sensitive
! by default.
! editor.exact_case: @on
! Finally, parse the user's defaults file.
#include $PCEAPPDATA/Defaults
|