打开 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 调用,这样就可以不用离开键盘完成这些操作了。
注:
1
dufu1991 OP 补充:自己对 AppleScript 也是一知半解,以上脚本由 ChatGPT 辅助完成。
|
2
dufu1991 OP AppleScript 是个好东西,不过中文的学习资料少之又少,官方的英文文档好像也是很陈旧的了,学习成本有点高,而且平时偶尔的一点小需求完全学习好像有不划算。现在有了 ChatGPT ,貌似不用纠结了,直接提出需求,配合给的注释,要修改一下好像也不难了。
|