commit 1680ccf745dce8d8f49100d03de32a9efad5c260 parent c0205f6fe64bcdb54cc18e4c2a6d97c968cfefa9 Author: Andreas Gruhler <agruhl@gmx.ch> Date: Sun, 13 Jun 2021 16:42:34 +0200 create config dir Diffstat:
M | README.md | | | 4 | ++-- |
R | diary.cfg -> config/diary.cfg | | | 0 |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md @@ -90,10 +90,10 @@ Note: for *BSD users run gmake. ## Configuration File -The [`diary.cfg`](./diary.cfg) configuration file can optionally be used to persist diary configuration. To install the sample from this repository: +The [`diary.cfg`](./config/diary.cfg) configuration file can optionally be used to persist diary configuration. To install the sample from this repository: ```bash mkdir -p ${XDG_CONFIG_HOME:-~/.config}/diary -cp diary.cfg ${XDG_CONFIG_HOME:-~/.config}/diary/ +cp config/diary.cfg ${XDG_CONFIG_HOME:-~/.config}/diary/ ``` The file `${XDG_CONFIG_HOME:-~/.config}/diary/diary.cfg` should adhere to a basic `key = value` format. Lines can be commented with the special characters `#` or `;`. The following configuration keys are currently supported: diff --git a/diary.cfg b/config/diary.cfg