-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add configurable first day of the week
Fixes #293 Signed-off-by: Sandro Bonazzola <[email protected]>
- Loading branch information
1 parent
dcda209
commit 75af2a3
Showing
2 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,13 +26,17 @@ Minimum config file should contain at least a ``general`` section | |
with an email address which will be used for searching. Option | ||
``width`` specifies the maximum width of the report, ``quarter`` | ||
can be used to choose a different start month of the quarter. | ||
Option ``week`` can be used to choose a different first day of the week: | ||
defaults to ``0`` which is Monday; | ||
other common setting for this option would be ``6`` which is Sunday. | ||
The ``separator`` and ``separator_width`` options control the | ||
character used, and width of the separator between users:: | ||
|
||
[general] | ||
email = Petr Šplíchal <[email protected]> | ||
width = 79 | ||
quarter = 1 | ||
week = 0 | ||
separator = # | ||
separator_width = 20 | ||
|
||
|