HotKeysReset discards the last hotkeys collection session results. Returns an error if tracking is currently active. This command is only available on standalone clients.
(ctx context.Context)
| 108 | // Returns an error if tracking is currently active. |
| 109 | // This command is only available on standalone clients. |
| 110 | func (c *Client) HotKeysReset(ctx context.Context) *StatusCmd { |
| 111 | cmd := NewStatusCmd(ctx, "hotkeys", "reset") |
| 112 | _ = c.Process(ctx, cmd) |
| 113 | return cmd |
| 114 | } |
| 115 | |
| 116 | // HotKeysGet retrieves the results of the ongoing or last hotkeys collection session. |
| 117 | // This command is only available on standalone clients. |
no test coverage detected