From 3852ba53f5df58dc2d1bdf75e2cac844a652e1bb Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Wed, 23 Apr 2025 14:48:33 +0100 Subject: [PATCH] add status message --- obsws_cli/group.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/obsws_cli/group.py b/obsws_cli/group.py index a32b7d2..77d1aad 100644 --- a/obsws_cli/group.py +++ b/obsws_cli/group.py @@ -123,6 +123,11 @@ def toggle(ctx: typer.Context, scene_name: str, group_name: str): enabled=new_state, ) + if new_state: + typer.echo(f"Group '{group_name}' is now visible.") + else: + typer.echo(f"Group '{group_name}' is now hidden.") + @app.command() def status(ctx: typer.Context, scene_name: str, group_name: str):