diff options
author | David Runge <david.runge@frqrec.com> | 2014-09-27 05:02:56 +0200 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2014-09-27 05:02:56 +0200 |
commit | 187fc27dc9bd765285f02e0aac13375bbcd84a6f (patch) | |
tree | fe37b0083a85ebff181398817912e37cd50dfefd /.config/khal | |
parent | 189ae9539bdbd398df6006e196487dfc2aba7131 (diff) | |
parent | 25fea35d4d91f808a6b588e9070bde5156406be6 (diff) | |
download | dotfiles-187fc27dc9bd765285f02e0aac13375bbcd84a6f.tar.gz dotfiles-187fc27dc9bd765285f02e0aac13375bbcd84a6f.tar.bz2 dotfiles-187fc27dc9bd765285f02e0aac13375bbcd84a6f.tar.xz dotfiles-187fc27dc9bd765285f02e0aac13375bbcd84a6f.zip |
Merge branch 'master' of https://github.com/davezerave/dot
* 'master' of https://github.com/davezerave/dot:
Adding further ignores
Adding khal settings to repository
SuperCollider startup file for electronic studio
Adding terminology settings directory
Adding amSynth settings
Adding settings file for baudline.
Adding arduino settings
Moving mpd ignores to .config/mpd
Adding electronic studio setup
Adding mpd.conf to .config/mpd/ directory
Adding automatic symlinking of shotwell folder upon mount of photos harddrive
Relocating .mpd directory to .config/mpd
Diffstat (limited to '.config/khal')
-rw-r--r-- | .config/khal/khal.conf | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/.config/khal/khal.conf b/.config/khal/khal.conf new file mode 100644 index 0000000..57a63e0 --- /dev/null +++ b/.config/khal/khal.conf @@ -0,0 +1,125 @@ +#/etc/khal/khal.conf.sample +# +# The default configuration file locations are: +# ~/.khal/khal.conf +# ~/.config/khal/khal.conf +# +# In this file you need to specify: +# - CalDAV Account settings +# - khal SQLite3 Database settings +# - Timezone and Time Display Formating Interface settings +# - Debug level +# +# Look at the end of this file for an example config. +#------------------------------------------------------------------------------ +# ## CalDAV Account Configuration ## +#------------------------------------------------------------------------------ +# [Calendar home] +# # Each calendar configuration must start with a Calendar tag +# # Each Calendar Tag must be unique. +# +# path: ~/.khal/calendars/home/ +# # Specify the location of the vdir +# +# +# color: dark blue +# # Set the color for this calendar +# # If color is not set, events will be in your default terminal color +# # * Colors may not be what you expect by their name. +# # * Your terminal's terminfo and termcap define these values. +# # +# # Supported color names: +# # 'black' 'white' 'brown' 'yellow' +# # 'dark grey' 'dark green' 'dark blue' +# # 'light grey' 'light green' 'light blue' +# # 'dark magenta' 'dark cyan' 'dark red' +# # 'light magenta' 'light cyan''light red' +# +#------------------------------------------------------------------------------ +# ## khal SQLite3 Database Configuration ## +#------------------------------------------------------------------------------ +# +# [sqlite] +# # This configuration file must have a [sqlite] Tag +# +# path: ~/.khal/khal.db +# # This specifies the location of the khal SQLite3 Database file +# # * Default: ~/.local/share/khal/khal.db +# +#------------------------------------------------------------------------------ +# ## Time Zone and Time Display Formating Configuration ## +#------------------------------------------------------------------------------ +# +# [default] +# # This configuration file must have a [default] Tag +# +# local_timezone: Pacific/Honolulu +# # Set the Local Timezone +# # * All date are shown in the Local Timezone +# +# default_timezone: Pacific/Honolulu +# # Set the Default Timezone +# # The Default Timezone is used for new events added via khal --new +# # It is also used if vCal datetime's timezone is not understood +# # +# +# timeformat: %H:%M +# dateformat: %m-%d +# longdateformat: %Y-%m-%d +# datetimeformat: %m-%d %H:%M +# longdatetimeformat: %Y-%m-%d %H:%M +# # Set the format Time and Date should be displayed in by khal +# # * Long version should contain the current year +# # +# # Specify date/time in standard strftime format +# # http://strftime.net/ +# # * Example date in ISO-8601 format, "American" +# +# encoding: utf-8 +# # Enable UTF-8 encoding +# # * Set this if your terminal is using to utf-8 +# +# unicode_symbols: True +# # Enable unicode symbols to display event properties +# # Set this to False if your terminal's character set dose not support them +# # * Default: True +# +# firstweekday: 6 +# # Set the first day of the week, 0 is Monday, 6 is Sunday +# +#------------------------------------------------------------------------------ +# ## Debug Level ## +#------------------------------------------------------------------------------ +# +# DEBUG: 0 +# # Specify the Default Debug level (only 0 and 1 are supported at the moment) +# + + +## +## Example Configuration +## +[Calendar home] +path: ~/.khal/calendars/home/ +color: dark blue + +[Calendar work] +path: ~/.khal/calendars/work/ +readonly: True + +[sqlite] +path: ~/.khal/khal.db + +[default] +local_timezone: Europe/Berlin +default_timezone: America/New_York + +timeformat: %H:%M +dateformat: %d.%m. +longdateformat: %d.%m.%Y +datetimeformat: %d.%m. %H:%M +longdatetimeformat: %d.%m.%Y %H:%M + +firstweekday: 0 + +DEBUG: 0 |