Created
October 12, 2023 09:28
-
-
Save vojtaholik/ded540fc8b553751887adbc03abcca90 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Menu: Record Screen | |
// Shortcut: shift cmd 5 | |
/** @type {import("@johnlindquist/kit")} */ | |
await applescript(` | |
-- # Setup to do a screen recording. | |
# tell application "QuickTime Player" to new screen recording | |
-- # Start the screen recording. | |
tell application "System Events" to tell process "Screen Shot" | |
repeat until exists button "Record" of its front window | |
delay 0.1 | |
end repeat | |
click button "Record" of its front window | |
end tell | |
-- # Set the time in seconds you want the recording to be. | |
delay 2 | |
-- # Stop the recording. | |
tell application "System Events" to ¬ | |
click menu bar item 1 ¬ | |
of menu bar 1 ¬ | |
of application process "screencaptureui" | |
`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment