From d86e3453c8599fef8576f984f45a3efa87c0e3cc Mon Sep 17 00:00:00 2001 From: Karel Balej Date: Mon, 24 Jul 2023 19:53:20 +0200 Subject: [PATCH 1/2] docs: add missing brace to example config --- docs/example_config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/example_config.json b/docs/example_config.json index dffdd6f..ef51ceb 100644 --- a/docs/example_config.json +++ b/docs/example_config.json @@ -30,3 +30,4 @@ "logs": "~/.local/share/iamb/logs/", "downloads": "~/Downloads/" } +} From 0847f3ddd9990873749f5baf71ee13f65b2b81eb Mon Sep 17 00:00:00 2001 From: Karel Balej Date: Mon, 24 Jul 2023 19:54:12 +0200 Subject: [PATCH 2/2] docs: fix paths in example config It seems no tilde expansion is currently performed and instead a directory named "~" is created in the current working directory. Shell expansion ($HOME) doesn't work either. --- docs/example_config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/example_config.json b/docs/example_config.json index ef51ceb..a10f16b 100644 --- a/docs/example_config.json +++ b/docs/example_config.json @@ -26,8 +26,8 @@ "default_room": "#iamb-users:0x.badd.cafe" }, "dirs": { - "cache": "~/.cache/iamb/", - "logs": "~/.local/share/iamb/logs/", - "downloads": "~/Downloads/" + "cache": "/home/user/.cache/iamb/", + "logs": "/home/user/.local/share/iamb/logs/", + "downloads": "/home/user/Downloads/" } }