Tool that records global keystrokes + mouse + button inputs and replays them. Supports Mac OS.
cargo run -- --record "recording.out"
This will prompt you to press a hotkey, which is F12
by default, to start recording. Press the hotkey again to stop recording. You should find a file named recording.out
in the current directory including your inputs.
To replay the recording, run:
cargo run -- --replay "recording.out"
This will infinitely loop the recorded inputs. You can stop the replay by pressing F12
again.