Skip to content

Instantly share code, notes, and snippets.

@koshatul
Created July 9, 2018 22:50
Show Gist options
  • Save koshatul/7205af2bab0c6e40497791dc4cf2ab5d to your computer and use it in GitHub Desktop.
Save koshatul/7205af2bab0c6e40497791dc4cf2ab5d to your computer and use it in GitHub Desktop.
Applescript OSX method of typing password into apps that block copy/paste
tell application "Franz"
activate
end tell
tell application "System Events"
keystroke "my-really-long-password-from-1password"
end tell
@koshatul
Copy link
Author

koshatul commented Jul 9, 2018

Because apps that block copy/paste into password fields just annoy me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment