From 6221f6a16730b1c5f6b969f316c963de34014983 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Sat, 5 Nov 2022 19:27:16 +0000 Subject: [PATCH] add os badges --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index df88c8b..58efd25 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white) +![Linux](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge&logo=linux&logoColor=black) + # VBAN Sendtext CLI Utility VBAN sendtext cli utility for sending Voicemeeter string requests over a network. @@ -15,7 +18,7 @@ VBAN sendtext cli utility for sending Voicemeeter string requests over a network ## `Use` -#### Command Line +#### `Command Line` Pass `host`, `port` and `streamname` as flags, for example: @@ -32,7 +35,7 @@ Port=6990 Streamname="Command1" ``` -#### Script files +#### `Script files` The vbantxt-cli utility accepts a single string request or an array of string requests. This means you can pass scripts stored in files. @@ -40,6 +43,10 @@ For example, in Windows with Powershell you could: `vbantxt-cli $(Get-Content .\script.txt)` +Or with Bash: + +`cat script.txt | xargs vbantxt-cli` + to load commands from a file: ```