From 3f003779db4f3478e060232d3ba856aae5f37917 Mon Sep 17 00:00:00 2001 From: rwxrob Date: Mon, 23 Aug 2021 22:21:28 -0400 Subject: [PATCH] Change `config` to `values` for a better name --- README.md | 10 +++++----- cmd | 15 ++++++++------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 5d81180..71d3934 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ cmd config KEY VALUE ``` The `config` command is for reading, writing, and displaying standard -open desktop configurations properties. +open desktop configuration properties. ### Arguments @@ -94,14 +94,14 @@ With a single KEY argument fetches the value for that key and outputs it. With more than one argument the remaining arguments after the KEY will -be combined into the VALUE and written to the `config` file in the +be combined into the VALUE and written to a `values` file in the standard configuration home location (Search for `XDG_CONFIG_HOME` for more information). ### Configuration `config` File Format -The file (which is always named `config` and almost always located at -`~/.config/cmd/config`) uses the simplest possible format to +The file (which is almost always located at +`~/.config/cmd/values`) uses the simplest possible format to facilitate standard UNIX parsing and filtering with any number of existing tools (and no `jq` dependency). @@ -161,5 +161,5 @@ Displays a summary of usage. ---- -*Autogenerated Mon Aug 23 10:14:22 PM EDT 2021* +*Autogenerated Mon Aug 23 10:21:22 PM EDT 2021* diff --git a/cmd b/cmd index a394b91..289cb6b 100755 --- a/cmd +++ b/cmd @@ -213,7 +213,7 @@ HELP[config]=' ``` The `config` command is for reading, writing, and displaying standard -open desktop configurations properties. +open desktop configuration properties. ### Arguments @@ -224,14 +224,14 @@ With a single KEY argument fetches the value for that key and outputs it. With more than one argument the remaining arguments after the KEY will -be combined into the VALUE and written to the `config` file in the +be combined into the VALUE and written to a `values` file in the standard configuration home location (Search for `XDG_CONFIG_HOME` for more information). ### Configuration `config` File Format -The file (which is always named `config` and almost always located at -`~/.config/'"$EXE"'/config`) uses the simplest possible format to +The file (which is almost always located at +`~/.config/'"$EXE"'/values`) uses the simplest possible format to facilitate standard UNIX parsing and filtering with any number of existing tools (and no `jq` dependency). @@ -269,7 +269,8 @@ _set_config() { } _read_config() { - local path="$XDG_CONFIG_HOME/$EXE/config" + local path="$XDG_CONFIG_HOME/$EXE/values" + [[ -r "$path" ]] || return 1 while IFS= read -r line; do [[ $line =~ ^([^=]+)=(.+)$ ]] || continue CONFIG["${BASH_REMATCH[1]}"]="${BASH_REMATCH[2]}" @@ -277,8 +278,8 @@ _read_config() { } _write_config() { - local path="$XDG_CONFIG_HOME/$EXE/config" - mkdir -p "${path%/config}" + local path="$XDG_CONFIG_HOME/$EXE/values" + mkdir -p "${path%/values}" _dump_config > "$path" }