diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-01-22 00:12:05 +0100 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-01-22 00:13:35 +0100 |
commit | d34e6502e91e9a301ce6b1c023adc881dbfe889c (patch) | |
tree | 3c3386356385aab1c3cb45f730c73d1d2ffd4e0f /test/data/conf | |
parent | 9cba56ac0ae9d8e6d58b8d5d645dfbca58321e0b (diff) | |
download | calcurse-d34e6502e91e9a301ce6b1c023adc881dbfe889c.tar.gz calcurse-d34e6502e91e9a301ce6b1c023adc881dbfe889c.zip |
test/: Add initial configuration file
As a preparation for our test cases (needed for date formatting etc.)
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'test/data/conf')
-rw-r--r-- | test/data/conf | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/test/data/conf b/test/data/conf new file mode 100644 index 0000000..2b7d566 --- /dev/null +++ b/test/data/conf @@ -0,0 +1,75 @@ +# +# Calcurse configuration file +# +# This file sets the configuration options used by Calcurse. These +# options are usually set from within Calcurse. A line beginning with +# a space or tab is considered to be a continuation of the previous line. +# For a variable to be unset its value must be blank, followed by an +# empty line. To set a variable to the empty string its value should be "". +# Lines beginning with "#" are comments, and ignored by Calcurse. + +# If this option is set to yes, automatic save is done when quitting +auto_save=yes + +# If this option is set to yes, the GC is run automatically when quitting +auto_gc=no + +# If not null, perform automatic saves every 'periodic_save' minutes +periodic_save=0 + +# If this option is set to yes, confirmation is required before quitting +confirm_quit=yes + +# If this option is set to yes, confirmation is required before deleting an event +confirm_delete=yes + +# If this option is set to yes, messages about loaded and saved data will not be displayed +skip_system_dialogs=no + +# If this option is set to yes, progress bar appearing when saving data will not be displayed +skip_progress_bar=no + +# Default calendar view (0)monthly (1)weekly: +calendar_default_view=0 + +# If this option is set to yes, monday is the first day of the week, else it is sunday +week_begins_on_monday=yes + +# This is the color theme used for menus : +color-theme=red on default + +# This is the layout of the calendar : +layout=1 + +# Width ( percentage, 0 being minimun width, fp) of the side bar : +side-bar_width=1 + +# If this option is set to yes, notify-bar will be displayed : +notify-bar_show=yes + +# Format of the date to be displayed inside notify-bar : +notify-bar_date=%a %F + +# Format of the time to be displayed inside notify-bar : +notify-bar_clock=%T + +# Warn user if he has an appointment within next 'notify-bar_warning' seconds : +notify-bar_warning=300 + +# Command used to notify user of an upcoming appointment : +notify-bar_command=printf '\a' + +# Notify all appointments instead of flagged ones only +notify-all=no + +# Format of the date to be displayed in non-interactive mode : +output_datefmt=%D + +# Format to be used when entering a date (1)mm/dd/yyyy (2)dd/mm/yyyy (3)yyyy/mm/dd) (4)yyyy-mm-dd: +input_datefmt=1 + +# If this option is set to yes, calcurse will run in background to get notifications after exiting +notify-daemon_enable=no + +# If this option is set to yes, activity will be logged when running in background +notify-daemon_log=no |