Alfred、XtraFinder辅助工具安装

Alfred 

Alfred可以快速方便的打开任意的应用程序。应用参考一地址:http://www.sdifen.com/alfred32.html





简单介绍下一些简单的应用:

自定义搜索添加  搜索引擎

可以快捷键cmd + ,进入Preference 或者右击状态栏的帽子进入。

按如下图操作然后 使用的时候用快捷键option + Space 唤出 打出自定义快捷键 空格搜索想要找的信息。





添加终端 这边以item2为例

默认是系统终端如果没使用zsh应该是bash终端破解版自带不需要配置,不破解这个功能用不了。下面先上配置脚本:

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



操作也比较简单 > 快捷键 空格然后输入你要输入的指令比如whoami

其他功能比如计算器啥的暂时就不介绍了。


XtraFinder安装

这个是一个功能比较强大的finder扩展软件但是由于mac OS X 10.11以上版本的SIP(System Integrity Protection  系统整体性保护机制)不能直接安装,但是关掉这个机制对系统安全也不好所以不建议直接关掉。可以采用以下方法:

1.关闭 SIP 机制(不推荐)

重启电脑,按下cmd + R 进入恢复模式,在界面显示后再顶端找到终端输入:

csrutil disable

重启电脑,就可以安装了。

2. 启用SIP关闭 debug (推荐)

重启电脑,按下cmd + R 进入恢复模式,在界面显示后再顶端找到终端输入:

csrutil enable --without debug

重启电脑安装。

注:可能按照这一步操作还是无法安装,我们这边的做法是先按照方法一关闭安装成功后再重启电脑按照二启用但是关闭debug模式,这样就可以了。

3.启用

如果想启用:重启电脑->恢复模式终端->输入以下指令

csrutil enable

4.文档方法

安装方法

Steps to install XtraFinder the first time

1. Disable System Integrity Protection.

2. Open XtraFinderInstaller to install XtraFinder.

3. Re-enable System Integrity Protection.

更新

Updating XtraFinder

链接:https://pan.baidu.com/s/1mlfd4cpNb11KuLV8Mv93fw 密码:o4pmYou do not need to repeat the installation procedure.

Just copy XtraFinder to /Applications directory.

以上是官方文档的介绍:意思是先关闭SIP然后安装最后重新开启。但是这样不准确,因为我试过重新开启后还是不能用,只用关闭debug模式是可以的。

更新软件是重新执行安装操作,包括关闭SIP开启SIP功能操作。

下面附上官方地址介绍很详细:http://www.trankynam.com/xtrafinder/sip.html    

最后提供安装包网盘分享:

链接:https://pan.baidu.com/s/1mlfd4cpNb11KuLV8Mv93fw 密码:o4pm

里面还有go2shell pp助手、Item2及zsh等逆向工程所要的一些工具及脚本和文档。


猜你喜欢

转载自blog.csdn.net/asuno_1/article/details/80582430