在Terminal / iTerm中使用HotKey切换不透明度

时间:2015-12-08 15:20:58

标签: transparency opacity terminate iterm2

有没有办法设置热键来改变终端或iTerm的不透明度?我通常使用低百分比的不透明度,能够快速打开和关闭会很好。

编辑:如果没有一些可定制性,Cmd + U基本上会做同样的事情

2 个答案:

答案 0 :(得分:4)

您可以使用AppleScript执行此操作。

即。在iTerm(版本2.9+)中,您可以使用以下内容将所有窗口/ sessons设置为50%透明度:

tell application "iTerm"
    repeat with aWindow in windows
        tell aWindow
            tell current session
                set transparency to 0.5
            end tell
        end tell
    end repeat
end tell

将其保存到文件并通过cmd-line运行:

osascript scriptname.scpt

您也可以将其放入Automator.app并将其设置为通过热键组合运行..

假设您可以在Terminal.app中执行相同操作,请打开它的AppleScript字典并查看设置窗口属性/透明度...

答案 1 :(得分:1)

cmd + u切换透明度。