Default output of `carl` | `carl` output with custom colors |
`carl` output with events from ical highlighted |
---|---|---|
 |  |  |
cargo install carl
The configuration file is located XDG_CONFIG_DIRS/carl/config.toml
or XDG_CONFIG_HOME/.carl/config.toml
(the latter has precedence).
The configuration file can define the name of a themefile and multiple icalfiles. Themefiles contain listings of date properties together with styledefintions. Icalfile listings contain paths to icalfiles together with styledefinitions.
The name of a them is simple specified using the theme =
setting:
theme = "default"
The themefile is read from XDG_CONFIG_DIRS/carl/<themename>.toml
or XDG_CONFIG_HOME/.carl/<themename>.toml
(the latter has precedence).
Icalfiles can be specified using the [[ical]]
setting:
[[ical]]
file = "/home/user/birthdays.ics"
stylenames = ['FGPurple']
If the file
setting points to a directory, carl
uses all the files in that directory it can parse.
A sample configuration file is located in data/config.toml.
Themefiles and Icalfile listings can contain custom style settings. A style changes how a specific date in the calendar is displayed.
A style consists of a list of stylenames and optionally a weight and a styletype ('Dark'
or 'Light'
). If no styletype is set, the style is effective in either case.
The various possible stylenames are listed at the bottom.
Example:
stylenames = ['Dimmed']
weight = 10
styletype = 'Dark'
A themefile consists of a collection of datestyles:
A datestyle consists of a list of properties of a date and a style. The date has to fullfill all of the properties for the style to be applied.
Example:
[[date]]
properties = ['CurrentDate']
stylenames = ['FGRed']
weight = 3
styletype = 'Light'
FirstDayOfMonth
:BeforeFirstDayOfMonth
:BeforeCurrentDate
:CurrentDate
:AfterCurrentDate
:AfterLastDayOfMonth
:LastDayOfMonth
:IsEvent
:A sample theme file is located in data/theme.toml.
Bold
Dimmed
Italic
Underline
Blink
Reverse
Hidden
Strikethrough
FGBlack
FGRed
FGGreen
FGYellow
FGBlue
FGPurple
FGCyan
FGWhite
{ FGRGB = {r = x, g = y, b = z }}
where x, y and z are the RGB values{ FGFixed = x }
a color number from 0 to 255, see the color chartBGBlack
BGRed
BGGreen
BGYellow
BGBlue
BGPurple
BGCyan
BGWhite
{BGRGB = { r = x, g = y, b = z }}
where x, y and z are the RGB values{BGFixed = x }
a color number from 0 to 255, see the color chartMultiple styles and colors can be combined using lists: ["Bold", "FGRed", "Underline"]