打开 Mac 的自动操作,添加 AppleScript 脚本,脚本内容为:
-- 弹出对话框,获取第一个输入文本
set out to (display dialog "请输入结果文本:" default answer "")'s text returned
-- 弹出对话框,获取第二个输入文本
set input to (display dialog "请输入简码:" default answer "")'s text returned
-- 拼接两个文本加上制表符,生成 custom 字符串
set custom to out & (character id 9) & input
-- 使用 shell 通过 echo 将 custom 字符串追加到 custom_phrase.txt 文件末尾
do shell script "echo " & quoted form of custom & " >> /Users/{YOUR NAME}/Library/Rime/custom_phrase.txt"
-- 模拟按键操作重新部署
tell application "System Events"
keystroke "`" using {control down, option down}
end tell
然后将脚本保存为工作流,或者服务(可以通过全局快捷键调用),或者应用程序( Quick Add RIME Custom 简称 qarc ),通过 HapiGo 或者 Alfred 或者 Raycast 调用,这样就可以不用离开键盘完成这些操作了。
注:
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.