change default config file name
All checks were successful
CI / build (amd64, usbmakroboard-amd64, linux_amd64) (pull_request) Successful in 1m9s
CI / build (arm64, usbmakroboard-arm64, linux_arm64) (pull_request) Successful in 4m23s

This commit is contained in:
2025-12-27 10:09:32 +01:00
parent 65bc8e9b18
commit eebd03bb4e
2 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ For info that with "EVIOCGRAB" the keyboard events can be consumed exclusively b
## Configuration
The configuration can be provided by either specifying a config file path via the `-c` parameter. If no parameter is provided, the default config path under `$HOME/.config/UsbMakroBoard.yaml` is used.
The configuration can be provided by either specifying a config file path via the `-c` parameter. If no parameter is provided, the default config path under `$HOME/.config/usbMakroBoard.yaml` is used.
Find the config schema in [schemas/config.schema.json](./schemas/config.schema.json) as well as a default config in [config.yaml](./config.yaml).

View File

@@ -67,8 +67,8 @@ std::string getConfigPathFromCliArguments(int argc, char *argv[])
configPath = optarg;
break;
default:
std::cout << "No config path provided. Using default config path: $HOME/.config/UsbMakroBoard.yaml\n";
configPath = "$HOME/.config/UsbMakroBoard.yaml";
std::cout << "No config path provided. Using default config path: $HOME/.config/usbMakroBoard.yaml\n";
configPath = "$HOME/.config/usbMakroBoard.yaml";
}
}