add status message

This commit is contained in:
onyx-and-iris 2025-04-23 14:48:33 +01:00
parent 8976e7e29c
commit 3852ba53f5

View File

@ -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):