1##--------------------------------------------------------------------
2## pal.conf file
3##   Type "man pal" for more information about this file.
4##
5## Comments begin with #
6##
7## The latest copy of a 'template' pal.conf file can be found in
8## /etc/pal.conf.  It describes every setting that can be changed in
9## pal.conf.
10##
11##--------------------------------------------------------------------
12
13##--------------------------------------------------------------------
14## Load pal calendar files
15##
16## FORMAT:
17## file filename (color)
18##   Display the events in filename on calendar and the detailed
19##   listing.  The "(color)" part is optional.  The color you select
20##   will be used when displaying the events in the file.  "color" can
21##   be: black, red, green, yellow, blue, magenta, cyan, or white.
22##
23## file_hide filename (color)
24##   Display the events in filename only in the detailed listing.
25##
26##
27## The filenames can be absolute or relative paths.
28##   - If a relative path is used, pal starts in ~/.pal and looks for
29##     the file.  If no file is found, pal starts in /usr/share/pal
30##     and looks for the file.
31##
32##   - If an absolute path is used, pal will only look for the file at
33##     the exact path given.
34##
35##
36## CALENDAR FILE FORMAT:
37## See the man page for information about the format of the pal
38## calendar files. Several calendars are installed by default in
39## /usr/share/pal
40##
41
42# united states holidays and other events
43file us.pal (red)
44
45# christian events
46file christian.pal (magenta)
47
48# historical events
49file_hide history.pal
50
51# holidays in various countries
52file_hide world.pal
53
54# births/deaths
55# file_hide birth-death.pal
56
57# computer-related events
58# file_hide computer.pal
59
60# music events
61# file_hide music.pal
62
63# australian events
64# file_hide australia.pal
65
66# lord of the rings events
67# file_hide lotr.pal
68
69# pagan events
70# file_hide pagan.pal
71
72
73##--------------------------------------------------------------------
74## Default color for events.  Unless you change it, it will be "blue"
75
76# event_color blue
77
78
79##--------------------------------------------------------------------
80## Make weeks begin on monday
81
82# week_start_monday
83
84
85##--------------------------------------------------------------------
86## Display week numbers in output
87
88# show_weeknum
89
90
91##--------------------------------------------------------------------
92## Display custom date string with -r,-d,-s arguments
93## Default: %a %e %b %Y
94##
95## See "man strftime" for what the symbols mean.  Do not use time
96## related items in the format string---use only ones that are date
97## related.
98
99# date_fmt %a %e %b %Y
100
101
102##--------------------------------------------------------------------
103## Show lists of events in reverse order.
104
105# reverse_order
106
107
108##--------------------------------------------------------------------
109## Hide the event type (shown before a ':') when listing events.  The
110## event type is defined at the top of the file that the event is
111## found in.
112
113# hide_event_type
114
115
116##--------------------------------------------------------------------
117## Show calendar on bottom (below reminders)
118
119# cal_on_bottom
120
121
122##--------------------------------------------------------------------
123## Don't use columns when displaying the calendar
124
125# no_columns
126
127
128##--------------------------------------------------------------------
129## Show lists of events in a more compact form (no spaces between
130## days)
131
132# compact_list
133
134
135##--------------------------------------------------------------------
136## Date format used when compact_list is used
137## Default: %m/%d/%Y
138##
139## The default writes the date in the American format.  Users in other
140## countries might prefer using %d/%m/%Y
141
142# compact_date_fmt %m/%d/%Y
143
144
145##--------------------------------------------------------------------
146## If you get tired of always using -r, you can set the default value
147## for -r here.  Note: Remember that this will affect what is
148## displayed when -d and -s are used too.
149## Default: 0
150##
151## Use the same thing thing after default_range that you use with -r.
152## For example, if you always want to use '-r 1-2', use 'default_range
153## 1-2'.  This value can be overridden by using -r at run-time.
154
155# default_range 1-2
156