From c063feb919d4085e419e8155d3a69e71b295e8c2 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 4 Nov 2024 14:37:32 +0000 Subject: [PATCH] fix default config.toml dir in README --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 649b1e9..c702438 100644 --- a/README.md +++ b/README.md @@ -41,13 +41,13 @@ func main() { streamname string = "onyx" ) - vbantxtClient, err := vbantxt.New(host, port, streamname) + client, err := vbantxt.New(host, port, streamname) if err != nil { log.Fatal(err) } - defer vbantxtClient.Close() + defer client.Close() - err = vbantxtClient.Send("strip[0].mute=0") + err = client.Send("strip[0].mute=0") if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error: %s", err) os.Exit(1) @@ -60,18 +60,18 @@ func main() { Pass `host`, `port` and `streamname` as flags, for example: ``` -vbantxt-cli -h="gamepc.local" -p=6980 -s=Command1 "strip[0].mute=1 strip[1].mono=1" +vbantxt -h="gamepc.local" -p=6980 -s=Command1 "strip[0].mute=1 strip[1].mono=1" ``` -You may also store them in a `config.toml` located in `home directory / .config / vbantxt_cli /` +You may also store them in a `config.toml` located in `home directory / .config / vbantxt /` A valid `config.toml` might look like this: ```toml [connection] -Host="gamepc.local" -Port=6980 -Streamname="Command1" +host="gamepc.local" +port=6980 +streamname="Command1" ``` - `host` defaults to "localhost" @@ -88,7 +88,7 @@ The vbantxt-cli utility accepts a single string request or an array of string re For example, in Windows with Powershell you could: -`vbantxt-cli $(Get-Content .\script.txt)` +`vbantxt $(Get-Content .\script.txt)` Or with Bash: @@ -109,7 +109,7 @@ bus[3].eq.On=0 Sending commands to VB-Audio Matrix is also possible, for example: ``` -vbantxt-cli -s=streamname "Point(ASIO128.IN[2],ASIO128.OUT[1]).dBGain = -8" +vbantxt -s=streamname "Point(ASIO128.IN[2],ASIO128.OUT[1]).dBGain = -8" ``` ---