美文网首页
Alfred支持iTerm配置

Alfred支持iTerm配置

作者: 开挂的小怪兽 | 来源:发表于2019-06-24 14:20 被阅读0次

1.Terminal设置为custom
2.填写以下脚本

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

相关文章

网友评论

      本文标题:Alfred支持iTerm配置

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