Created
January 23, 2020 23:43
-
-
Save dgowrie/dabdc0cc1bf7cfc50f471f93508dba8c to your computer and use it in GitHub Desktop.
Timestamp just the time - Automator quick action applescript
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
on run {input, parameters} | |
set theTime to (time string of (current date)) as string | |
tell application "System Events" | |
keystroke theTime | |
end tell | |
return input | |
end run | |
## will need to allow Automator and the apps (Sublime, Notepad, etc) via Security & Privacy > Accessibility |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment