Last active
March 15, 2023 12:14
-
-
Save nsdont/3c338f6eeac2bf288ff5006213b943af to your computer and use it in GitHub Desktop.
Rime macOS 同步脚本 & 定时执行
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
| 0 6 * * * "/Users/apple/Library/Rime/sync.sh" >> /tmp/rime_sync-"$(date +"%Y%m")".log 2>&1 & |
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
| #!/bin/bash | |
| # | |
| # put this script in ~/Library/Rime, list existing user dictionaries: | |
| # ./rime_dict_manager --list | |
| # see other supported options: | |
| # ./rime_dict_manager | |
| cd ~/Library/Rime | |
| DYLD_LIBRARY_PATH="/Library/Input Methods/Squirrel.app/Contents/Frameworks" "/Library/Input Methods/Squirrel.app/Contents/MacOS/Squirrel" --quit | |
| DYLD_LIBRARY_PATH="/Library/Input Methods/Squirrel.app/Contents/Frameworks" "/Library/Input Methods/Squirrel.app/Contents/MacOS/rime_dict_manager" -s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment