upd hotkey trs help message

This commit is contained in:
onyx-and-iris 2025-05-23 10:15:37 +01:00
parent 5192368ba8
commit e72d1d2eb8

View File

@ -37,7 +37,10 @@ def trigger_sequence(
ctrl: bool = typer.Option(False, help='Press control when triggering the hotkey'),
alt: bool = typer.Option(False, help='Press alt when triggering the hotkey'),
cmd: bool = typer.Option(False, help='Press cmd when triggering the hotkey'),
key_id: str = typer.Argument(..., help='The hotkey to trigger'),
key_id: str = typer.Argument(
...,
help='The OBS key ID to trigger, see https://github.com/onyx-and-iris/obsws-cli?tab=readme-ov-file#hotkey for more info',
),
):
"""Trigger a hotkey by sequence."""
ctx.obj.trigger_hotkey_by_key_sequence(key_id, shift, ctrl, alt, cmd)