美文网首页
MAC 上常用的效率工具

MAC 上常用的效率工具

作者: maple_0 | 来源:发表于2018-10-21 21:30 被阅读0次

    OmniFocus

    一款 GTD 神器,有效清空大脑中的事项,帮助集中注意力和提高效率。OmniFocus 的开发概念是来自 David Allen 的书籍与事务管理方法 “Getting Things Done”,主要协助您捕捉并管理各项事务与点子,发挥生产力;人们可以用它来储存、管理及处理各项动作或任务,而任务或各项目可被指派到相关的专案中,同时 OmniFocus 也提供了视觉提示来提醒您下一步该执行的动作。

    SizeUp

    一款窗口处理神器,只需要按下几组组合件,即可轻松管理窗口。非常好用,建议购买付费版。

    image

    Alfred

    image
    Alfred被称之为 Mac 上最强大的效率工具,尤其是其中引入的 Workflows 扩展功能。不过 Workflows 也是要购买 powerpack 付费方可使用。
    安装完成后即可输入 Alt+空格 激活使用。

    其中> 调用命令行部分,如果希望调用iTerm 可以复制以下代码,即可实现调用 > 打开出Term

    image
    on alfred_script(q)
        if application "iTerm2" is running or application "iTerm" is running then
            run script "
                on run {q}
                    tell application \"iTerm\"
                        activate
                        try
                            select first window
                            set onlywindow to true
                        on error
                            create window with default profile
                            select first window
                            set onlywindow to true
                        end try
                        tell the first window
                            if onlywindow is false then
                                create tab with default profile
                            end if
                            tell current session to write text q
                        end tell
                    end tell
                end run
            " with parameters {q}
        else
            run script "
                on run {q}
                    tell application \"iTerm\"
                        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
    
    

    默认打开iTerm后,会在~目录中。如果需要运行自己常用的程序,可以使用
    ln -s /usr/tmp ./tmp_link
    的方式建立一个软链接,这样就可以在当前目录创建一个 tmp_link 的链接,cd tmp_link即可进入需要到达的目录。有了快速执行命令行的这种方式,可以有效节约打开的时间。尽量解放自己的双手。

    简单介绍下关于Workflows,主要包括创建新文件、印象笔记搜索、系统隐藏文件查看、最近访问的文件和在命令行/Finder目录之间的快速切换。使用非常便捷。其中的项目均是通过插件下载所得

    image

    Alfred 插件下载地址:http://www.alfredworkflow.com/

    相关文章

      网友评论

          本文标题:MAC 上常用的效率工具

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