Last active
March 14, 2023 08:23
-
-
Save benigumocom/7c9cb9819bf45583a42b07b0ed894176 to your computer and use it in GitHub Desktop.
Change text font style on macOS Notes.app
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
| 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 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
【Mac】メモ.app のテキストを等幅フォントにワンクリックでするショートカット📝
👉 https://android.benigumo.com/20230314/shortcus-notes/