From 420d56eb0a3f6e2276d1ce67b2cdcc061e304914 Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Sat, 20 May 2023 18:51:36 +0100 Subject: [PATCH 1/2] Make correct location of `inlyne.toml` file clearer --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e9929f5..dc852959 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,13 @@ You weren't supposed to see this! ## Configuration -Use `inlyne --help` to see all the command line options. Some of which can be set permentantly by placing an `inlyne.toml` file into the default [dirs](https://crates.io/crates/dirs) configuration folder for your respective OS. Checkout `inlyne.sample.toml` for an example configuration. +Use `inlyne --help` to see all the command line options. Some of which can be set permentantly by placing an `inlyne.toml` file into a directory called `inlyne` within the default [dirs](https://crates.io/crates/dirs) configuration folder for your respective OS: + +- Linux: `/home/alice/.config/inlyne/inlyne.toml` +- Windows: `C:\Users\Alice\AppData\Roaming\inlyne\inlyne.toml` +- Mac: /Users/Alice/Library/Application Support/inlyne/inlyne.toml` + +Checkout `inlyne.sample.toml` for an example configuration. ## FAQ From 01c898c02386ca9ba9829d9fe142332f3e02c086 Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Sat, 20 May 2023 18:53:25 +0100 Subject: [PATCH 2/2] Fix missing backtick --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dc852959..ef41eb01 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ Use `inlyne --help` to see all the command line options. Some of which can be se - Linux: `/home/alice/.config/inlyne/inlyne.toml` - Windows: `C:\Users\Alice\AppData\Roaming\inlyne\inlyne.toml` -- Mac: /Users/Alice/Library/Application Support/inlyne/inlyne.toml` +- Mac: `/Users/Alice/Library/Application Support/inlyne/inlyne.toml` Checkout `inlyne.sample.toml` for an example configuration.