我刚刚通过Automator编写了一个脚本,以在“ New Finder Window Home”标题下创建键盘快捷键:
on run {input, parameters}
tell application "Finder"
activate
make new Finder window to home
end tell
return input
end run
当我从Automator运行脚本时,Finder将打开我的主页选项卡。然后,从“系统偏好设置”>“键盘”>“键盘快捷键”>“服务”中选中“新建Finder窗口主页”,并将其分配ControlOptionCommandSpace为快捷方式。
不幸的是,快捷方式不起作用!有什么建议么?
与其他键盘快捷键一起使用对我来说效果很好。我猜这是因为根本没有办法将⌃⌥⌘␣用作键盘快捷键-至少不是通过系统偏好设置。也许FastScripts适合您?red-sweater.com/fastscripts
—
slhck