I've got 2 questions regarding OS X. Firstly how do we maximize a window? (I mean I know the green button, but is there a way to tell the window to take all the remaining space available?)

Also, is there any way we could remove (or auto-hide) the menu bar?

link|improve this question

possible duplicate of Mac OS X Shortcut Maximize window – Daniel Beck May 3 '11 at 11:15
1  
ok just to be sure. i can't achieve it without downloading installing anything extra? – Pacerier May 3 '11 at 11:32
No you can't. The green button usually switches between user state and optimum state, as determined by the application developer. If they say "optimum is full screen" (.e.g Apple Mail), then you're good. Otherwise, you're not. With 24+ inch screens, full screen is a ridiculous waste of space anyway. You could e.g. Cinch for the Windows 7 experience of dragging windows to the very top to maximize them. That's what I do. – Daniel Beck May 3 '11 at 11:35
24 inch.. think about laptoppers.. – Pacerier May 3 '11 at 11:37
2  
I can only give you the options you have, and a possible explanation why it is like it is. – Daniel Beck May 3 '11 at 11:39
feedback

2 Answers

up vote 1 down vote accepted

For the first question, see here.

For the second question: No. This is the menu bar and is always there, except for some full-screen applications, where it's hidden or on auto-hide. There are some hacks to get around that, but what's the point? You need it all the time anyway.

link|improve this answer
1  
ok is there a way to get it to the left or right side? because having a bar at the top makes clicking the tabs in chromes very hard (i couldn't just fling my pointer upwards) – Pacerier May 3 '11 at 11:19
@Pacerier No, there isn't. Is it just Chrome you're concerned about? – Daniel Beck May 3 '11 at 11:20
@Daniel Beck yea partly.. . – Pacerier May 3 '11 at 11:31
@Pacerier Check out Megazoomer. It's a bit intrusive, using SIMBL and stuff, but might work for you. Haven't tried it with Chrome though. I can't look up the configuration for full screen programs right now, unfortunately. Will look it up in 5 hours when I'm home. – Daniel Beck May 3 '11 at 11:32
heys cool, btw its ok. if it requires installing/downloading something else then I'm not doing it. i just don't believe in it, its not portable at all – Pacerier May 3 '11 at 11:36
show 5 more comments
feedback
try
    tell application "Finder" to set {0, 0, dtw, dth} to bounds of window of desktop
    tell application (path to frontmost application as text) to tell window 1
        set bounds to {0, 22, dtw, dth}
    end tell
end try

Save as .scpt or .applescript and assign a shortcut with e.g. FastScripts or your launcher of choice. Currently the script doesn't work with multiple displays or in apps without basic AS support.


Applications that can maximize a window with a shortcut:

+WZ = also has an option to change zoom button behavior, like spicyj/wrongzoom - GitHub

link|improve this answer
The LSUIPresentationMode doesn't help in this case, since the tabs are still not at the very top and the menubar reappears. Feels like the Windows start menu button pre XP shudder. – Daniel Beck May 3 '11 at 17:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.