Alfred 黑帽子安装

Alfred 是一款非常方便好用的只能搜索软件,完全可以代替OS X自带的 Spotight,功能非常之强大。

安装地址:Alfred 3.2 Mac破解版下载
密码:dpm1

安装步骤
  1. 打开的dmg镜像,双击 Alfred,讲 Alfred 安装到应用程序;


    Alfred 黑帽子安装_第1张图片
    打开的dmg镜像
  2. 双击 3 KG安装包,出现弹窗,点击 Patch,进行选择 Alfred 打开;


    Alfred 黑帽子安装_第2张图片
    3KG 弹框

    Alfred 黑帽子安装_第3张图片
    选择 Alfred
  3. 点击 save 保存,即可破解完成,打开 Alfred 可使用全部功能。


    Alfred 黑帽子安装_第4张图片
    点击 save 保存

如果想要Alfred 支持直接打开终端,如果安装有 iTerm2 的话,可以配置 Alfred, 从而使用 ITerm2。

Alfred 黑帽子安装_第5张图片
Alfred Preferences

脚本:

on alfred_script(q)  
    if application "iTerm2" is running or application "iTerm" is running then  
        run script "  
            on run {q}  
                tell application \":Applications:iTerm.app\"  
                    activate  
                    try  
                        select first window  
                        set onlywindow to false  
                    on error  
                        create window with default profile  
                        select first window  
                        set onlywindow to true  
                    end try  
                    tell current session of the first window  
                        if onlywindow is false then  
                            tell split vertically with default profile  
                                write text q  
                            end tell  
                        end if  
                    end tell  
                end tell  
            end run  
        " with parameters {q}  
    else  
        run script "  
            on run {q}  
                tell application \":Applications:iTerm.app\"  
                    activate  
                    try  
                        select first window  
                    on error  
                        create window with default profile  
                        select first window  
                    end try  
                    tell the first window  
                        tell current session to write text q  
                    end tell  
                end tell  
            end run  
        " with parameters {q}  
    end if  
end alfred_script

Alfred 的详细使用可以参考文章《从零开始学习 Alfred:基础功能及设置》

文章无特殊说明皆为原创,转载请说明来源!

本文章提供的软件仅供学习使用,请在24小时内删除,本人不承担任何相关责任!

如果感觉有帮助的话,请点一个喜欢!

你可能感兴趣的:(Alfred 黑帽子安装)