| 1 |
frodo |
177 |
# This is the configuration file for libpsiconv. |
| 2 |
|
|
# By default, the library looks for /etc/psiconv.conf and ~/.psiconv.conf, |
| 3 |
|
|
# but programs may add more entries to this searchpath. |
| 4 |
|
|
# Settings in later files overrule settings in earlier files (so everything |
| 5 |
|
|
# in .psiconv.conf is more important than /etc/psiconv.conf). |
| 6 |
|
|
|
| 7 |
|
|
# All lines with only whitespace are ignored. |
| 8 |
|
|
# Comment lines start with a hash (#) and are ignored. |
| 9 |
|
|
# Comments are not allowed after statements. |
| 10 |
|
|
|
| 11 |
|
|
# Statements are of the form: |
| 12 |
|
|
# VAR=VALUE |
| 13 |
|
|
# There may be whitespace around the = token. |
| 14 |
|
|
# Variable names are case-insensitive. |
| 15 |
|
|
|
| 16 |
|
|
|
| 17 |
|
|
########################## |
| 18 |
|
|
# ALL SETTINGS EXPLAINED # |
| 19 |
|
|
########################## |
| 20 |
|
|
|
| 21 |
|
|
#################### |
| 22 |
|
|
# General settings # |
| 23 |
|
|
#################### |
| 24 |
|
|
|
| 25 |
|
|
# The verbosity of the libary |
| 26 |
|
|
# This determines how much output the library generates, especially when it |
| 27 |
|
|
# is parsing Psion files. |
| 28 |
|
|
# There are four levels of verbosity; higher numbers generate more output: |
| 29 |
|
|
# 1: Only display fatal errors |
| 30 |
|
|
# 2: Display warnings and errors |
| 31 |
|
|
# 3: Display progress information |
| 32 |
|
|
# 4: Display debug information |
| 33 |
|
|
# Programs can use their own error/information reporting routines; by default, |
| 34 |
|
|
# everything is logged to stderr. |
| 35 |
|
|
#Verbosity = 2 |
| 36 |
|
|
|
| 37 |
|
|
#################### |
| 38 |
|
|
# Display settings # |
| 39 |
|
|
#################### |
| 40 |
|
|
|
| 41 |
|
|
# Display settings are used when generating image files. |
| 42 |
|
|
|
| 43 |
|
|
# Set Color to zero when you have a greyscale display, to one if you |
| 44 |
|
|
# have a color display |
| 45 |
|
|
#Color = 0 |
| 46 |
|
|
|
| 47 |
|
|
# The number of bits used to encode colors. |
| 48 |
|
|
#ColorDepth = 2 |
| 49 |
|
|
|
| 50 |
|
|
# If you have a color display, colors may be encoded either as RGB colors |
| 51 |
|
|
# or as entries in a palet. In the first case, set here the number of bits |
| 52 |
|
|
# used to encode red, green and blue. Make sure the sum of these bit numbers |
| 53 |
|
|
# equals the ColorDepth set above. To use one of the default palets, |
| 54 |
|
|
# set all three to zero. |
| 55 |
|
|
# If you have a greyscale display, these settings are ignored. |
| 56 |
|
|
#RedBits = 0 |
| 57 |
|
|
#GreenBits = 0 |
| 58 |
|
|
#BlueBits = 0 |
| 59 |
|
|
|
| 60 |
|
|
#################################### |
| 61 |
|
|
# DEFAULTS FOR THE PSION 5 AND 5MX # |
| 62 |
|
|
#################################### |
| 63 |
|
|
|
| 64 |
|
|
Color = 0 |
| 65 |
|
|
ColorDepth = 2 |
| 66 |
|
|
#RedBits = 0 |
| 67 |
|
|
#GreenBits = 0 |
| 68 |
|
|
#BlueBits = 0 |
| 69 |
|
|
|