From 950482b032eced3827a103807045e759994753cc Mon Sep 17 00:00:00 2001 From: Philipp Schmitt Date: Sun, 3 Mar 2024 16:05:03 +0100 Subject: [PATCH] Add docs for groups --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index 7cc98bb..343b644 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,32 @@ To list all items in a scene: obs-cli item list --scene "Scene2" ``` +### 📂 Group Management + +You can manage scene item groups using the `group` command: + +```shell +obs-cli group --help +``` + +For example, to hide an group named "group1" in a scene named "Scene2": + +```shell +obs-cli group hide --scene "Scene2" "group1" +``` + +And to show it: + +```shell +obs-cli group show --scene "Scene2" "group1" +``` + +To list all groups in a scene: + +```shell +obs-cli group list --scene "Scene2" +``` + ### 🎤 Input Management You can manage inputs using the `input` command: