Skip to content

Commit 950482b

Browse files
committed
Add docs for groups
1 parent 209972f commit 950482b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,32 @@ To list all items in a scene:
8383
obs-cli item list --scene "Scene2"
8484
```
8585

86+
### 📂 Group Management
87+
88+
You can manage scene item groups using the `group` command:
89+
90+
```shell
91+
obs-cli group --help
92+
```
93+
94+
For example, to hide an group named "group1" in a scene named "Scene2":
95+
96+
```shell
97+
obs-cli group hide --scene "Scene2" "group1"
98+
```
99+
100+
And to show it:
101+
102+
```shell
103+
obs-cli group show --scene "Scene2" "group1"
104+
```
105+
106+
To list all groups in a scene:
107+
108+
```shell
109+
obs-cli group list --scene "Scene2"
110+
```
111+
86112
### 🎤 Input Management
87113

88114
You can manage inputs using the `input` command:

0 commit comments

Comments
 (0)