有没有办法设置热键来改变终端或iTerm的不透明度?我通常使用低百分比的不透明度,能够快速打开和关闭会很好。
编辑:如果没有一些可定制性,Cmd + U基本上会做同样的事情
答案 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
切换透明度。