我对 OS X 有两个问题。首先,我们如何最大化窗口?(我的意思是我知道绿色按钮,但是有没有办法告诉窗口占用所有剩余的可用空间?)
另外,我们有什么办法可以删除(或自动隐藏)菜单栏吗?
答案1
对于第一个问题,请参阅这里。
对于第二个问题:不是。这是菜单栏,始终存在,除了一些全屏应用程序,它被隐藏或自动隐藏。有一些技巧可以解决这个问题,但有什么意义呢?无论如何,你总是需要它。
答案2
只需Shift按住绿色图标即可进入全屏。
这适用于 OS X 10.8.2+
答案3
我已使用 FastScripts 将此脚本分配给 ⌘M:
try
tell application "Finder" to bounds of window of desktop
tell application (path to frontmost application as text)
set bounds of window 1 to result
end tell
on error
try
tell application "System Events" to tell (process 1 where it is frontmost)
click (button 1 of window 1 where subrole is "AXZoomButton")
end tell
end try
end try
但它不适用于多显示器。
支持最大化窗口以填满屏幕的应用程序:
答案4
作为一个新的 Mac 用户,我也在寻找一个最大化按钮 - 而不是全屏按钮,因为我不想失去系统栏或 Dock 的可见性。
似乎双击标题栏任何应用程序都能满足我的需要。