Skip to content

Instantly share code, notes, and snippets.

@benigumocom
Last active March 14, 2023 08:23
Show Gist options
  • Select an option

  • Save benigumocom/7c9cb9819bf45583a42b07b0ed894176 to your computer and use it in GitHub Desktop.

Select an option

Save benigumocom/7c9cb9819bf45583a42b07b0ed894176 to your computer and use it in GitHub Desktop.
Change text font style on macOS Notes.app
tell application "System Events"
tell process "Notes" -- english app name
activate
set frontmost to true
end tell
-- select all
keystroke "a" using command down
-- monospaced
keystroke "m" using {shift down, command down}
-- deselect all (left arrow)
key code 123
end tell
@benigumocom
Copy link
Copy Markdown
Author

【Mac】メモ.app のテキストを等幅フォントにワンクリックでするショートカット📝
👉 https://android.benigumo.com/20230314/shortcus-notes/

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