为Finder添加新的功能按钮

作者: PhilicX | 来源:发表于2016-05-30 23:34 被阅读47次

    第一步:

    打开Mac自带的Automator,新建一个类型为“应用程序”的文稿

    Paste_Image.png

    第二步:

    搜索并拖动一个“运行AppleScript脚本”步骤进入右边的工作流中,

    Paste_Image.png

    输入以下代码

    on run {input, parameters}  
    tell application "Finder"
        make new file at {target of front window as alias}
    end tell
    end run
    

    第三步:

    保存后,我们将获得一个“未命名.app”。随便打开一个Finder窗口,同时按下alt+cmd,将这个app拖到Finder的工具栏上,会生成一个按钮。此后点击这个按钮,就可以在当前文件夹中新建一个空白文件。

    后续工作:

    用cmd+I打开应用程序详细信息,给这个app换个图标吧,全部完成后是下面这个样子:


    Paste_Image.png

    相关文章

      网友评论

        本文标题:为Finder添加新的功能按钮

        本文链接:https://www.haomeiwen.com/subject/viscdttx.html