From b8b637b4b75a48454e905263a9b9d9274967c45e Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Fri, 6 Feb 2026 17:47:21 +0000 Subject: [PATCH] upd snapshot subcommand help output --- README.md | 4 ++-- snapshot.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f1ad3e5..7e5de0d 100644 --- a/README.md +++ b/README.md @@ -124,8 +124,8 @@ Headamp Snapshot snapshot list List all snapshots. snapshot name Get or set the name of a snapshot. - snapshot save Save the current mixer state. - snapshot load Load a mixer state. + snapshot save Save the current mixer state to a snapshot. + snapshot load Load a mixer state from a snapshot. snapshot delete Delete a snapshot. Run "xair-cli --help" for more information on a command. diff --git a/snapshot.go b/snapshot.go index 932e4d1..e047637 100644 --- a/snapshot.go +++ b/snapshot.go @@ -7,8 +7,8 @@ type SnapshotCmdGroup struct { Index struct { Index int `arg:"" help:"The index of the snapshot."` Name NameCmd `help:"Get or set the name of a snapshot." cmd:"name"` - Save SaveCmd `help:"Save the current mixer state." cmd:"save"` - Load LoadCmd `help:"Load a mixer state." cmd:"load"` + Save SaveCmd `help:"Save the current mixer state to a snapshot." cmd:"save"` + Load LoadCmd `help:"Load a mixer state from a snapshot." cmd:"load"` Delete DeleteCmd `help:"Delete a snapshot." cmd:"delete"` } `help:"The index of the snapshot." arg:""` }