Skip to content

Commit

Permalink
Add docs for groups
Browse files Browse the repository at this point in the history
  • Loading branch information
pschmitt committed Mar 3, 2024
1 parent 209972f commit 950482b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 950482b

Please sign in to comment.