add os badges

This commit is contained in:
onyx-and-iris 2022-11-05 19:27:16 +00:00
parent 826df820fc
commit 6221f6a167

View File

@ -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
VBAN sendtext cli utility for sending Voicemeeter string requests over a network. 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` ## `Use`
#### Command Line #### `Command Line`
Pass `host`, `port` and `streamname` as flags, for example: Pass `host`, `port` and `streamname` as flags, for example:
@ -32,7 +35,7 @@ Port=6990
Streamname="Command1" 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. 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)` `vbantxt-cli $(Get-Content .\script.txt)`
Or with Bash:
`cat script.txt | xargs vbantxt-cli`
to load commands from a file: to load commands from a file:
``` ```