🌐
Reddit
reddit.com › r/macos › how do you maximize windows in macos?
How do you maximize windows in MacOS? : r/MacOS
August 17, 2023 - There are way to do it as described in other replies, but I highly recommend the lightweight and free app Rectangle, because it gives you customizable keyboard shortcuts for various sizes and positions of windows. I created ⌘+⌥+⌃+= for maximize, and use it all the time.
🌐
Apple Support
support.apple.com › guide › mac-help › work-with-app-windows-mchlp2469 › mac
Move and arrange app windows on Mac - Apple Support
To make a tab a separate window ... pointer over the green button in the top-left corner of an app window, then click below Fill & Arrange, or press Fn-Control-F....
Discussions

macos - Maximize window shortcut - Ask Different
The problem is that sometimes maximizing the window isn't the same as having the window full-sized on your desktop. There is an app on the Mac App Store called "Magnet" (https://apps.apple.com/at/app/magnet/id441258766?mt=12) which does this job perfectly and you can even customize the shortcuts. More on apple.stackexchange.com
🌐 apple.stackexchange.com
October 16, 2019
How do I maximize my window WITHOUT it re… - Apple Community
I'm mainly a Windows user and I got my first Mac OS device 2 years ago and up to this day, I still don't know how to do the normal Windows way of maximizing windows. Please help me. More on discussions.apple.com
🌐 discussions.apple.com
January 22, 2022
is there a shortcut to maximize a window? | MacRumors Forums
If you mean fullscreen, it's ... System Preferences. There you can add shortcuts for anything accessible through the menu bar actually. Maximise as a window management function isn't a default behaviour available in macOS... More on forums.macrumors.com
🌐 forums.macrumors.com
July 2, 2019
Did you know this shortcut to maximize a Mac window?
Did not know this! Thank’s. I can higly recommend Rectangle to do the same thing. More on reddit.com
🌐 r/MacOS
4
9
July 9, 2021
🌐
Apple Community
discussions.apple.com › thread › 253594264
How do I maximize my window WITHOUT it re… - Apple Community
January 22, 2022 - hold the Option key use the green pill button in the upper left of the application window. This maximize screen real estate without going into full screen mode. ... Programs not covering the screen All of my programs open covering only about 80% of the screen.
🌐
MacRumors
forums.macrumors.com › macs › macos › macos
is there a shortcut to maximize a window? | MacRumors Forums
July 2, 2019 - If you mean fullscreen, it's command+control+f. It you mean window zoom, there isn't a default but one can manually be added in Keyboard System Preferences. There you can add shortcuts for anything accessible through the menu bar actually. Maximise as a window management function isn't a default behaviour available in macOS
🌐
MacSales.com
eshop.macsales.com › home › mac 101: window management keyboard shortcuts
Mac 101: Window Management Keyboard Shortcuts
November 13, 2019 - 4) Maximize the current window (No built-in shortcut) There’s no keyboard shortcut built into macOS for maximizing a window; that is, making it take up all the available space on the screen without covering the menu bar.
Find elsewhere
🌐
MacMost
macmost.com › 3-different-ways-to-maximize-a-window-on-a-mac.html
3 Different Ways To Maximize a Window On a Mac
July 14, 2020 - If you want the window to fill out the screen regardless of the contents of the window, Option double click any of the four corners. ... Great video Gary, I also learn something new watching your videos. ... Thanks for this. I've always wondered why MacOS doesn't have a maximise (as opposed to full screen) button.
Top answer
1 of 2
122

Assign a shortcut for the Zoom menu item (or whatever it's called in your locale) from System Preferences:

If you want the shortcut to always maximize a window to fill a screen, you can use for example Spectacle:

Or add a line like this to ~/.slate with Slate:

bind m:cmd;shift move screenOriginX;screenOriginY screenSizeX;screenSizeY

I have used FastScripts to assign a shortcut to this script:

try
    tell application "Finder" to set b to bounds of window of desktop
    try
        tell application (path to frontmost application as text)
            set bounds of window 1 to {item 1 of b, 22, item 3 of b, item 4 of b}
        end tell
    on error
        tell application "System Events" to tell window 1 of (process 1 where it is frontmost)
            try
                set position to {0, 22}
                set size to {item 3 of b, (item 4 of b) - 22}
            on error
                click (button 1 of window 1 where subrole is "AXZoomButton")
            end try
        end tell
    end try
end try

When you tell System Events to change the position and size through the accessibility API, there is a noticeable delay between when the position and the size are changed. Telling the application to change the bounds of a window is faster but it doesn't work with all applications. Other applications like Slate and Moom always use the accessiblity API.

2 of 2
44

Sorry I made a mistake about minimizing window. It's ready from Apple. So, I amended.

Answer:

  • Command-M :Minimize the active window to the Dock
  • Command-Option-M :Minimize all windows of the active application to the Dock
  • (Setup is required) :Maximize the active window

To maximize the active window(application), you must assign the operation to shortcut key as follows;

  1. Go to System Preferences>Keyboard>Shortcuts>App Shortcut, then click "+" to add shortcut key.
  2. Choose "All Application" which means this change will affect all application, put the text "Maximize" in "Menu Title" textbox and press "Command+Shift+M" in "Shortcut Key" textbox.
  3. Restart Window(Application) which you would like to affect by the shortcut key.(No reboot requred)
  4. You will find new menu item in the menu bar also.

Recommendation basis:

I recommend you to use below shortcut key instead of using default minimizing shortcut key.

To Minimize the active window(application):

Command+H :Hide active window(application)

It's possible to minimize the active window in above shortcut key but actually it's hidden the active window(application). And, if you use this shortcut key, you can switch hidden window by shortcut key which is "Command + Tab" quickly. If you minimize the active window by Command+M, you can not switch application by command + Tab quickly and you have to click the application from Dock.)

You can refer related information in below.

http://support.apple.com/kb/HT1343, http://support.apple.com/kb/PH13911

🌐
DEV Community
dev.to › alialp › mac-os-keyboard-shortcut-how-to-maximise-a-minimised-window-4cdg
A Mac OS Keyboard shortcut, How to maximise a minimised window - DEV Community
December 21, 2019 - A little reminder, You cannot maximise a window with Spectacle, which has been minimized with minimize button or CMD + M ... I've been a professional C, Perl, PHP and Python developer. I'm an ex-sysadmin from the late 20th century. These days I do more Javascript and CSS and whatnot, and promote UX and accessibility. ... I don't think I ever minimise anything on MacOS, I just cover the windows up with something else.
🌐
OS X Daily
osxdaily.com › 2018 › 03 › 25 › make-window-full-screen-mac
How to Make a Window Full Screen on Mac
February 13, 2019 - That keyboard shortcut is Command + Control + F · Again, this is Full Screen Mode, which is not the same as simple enlarging a window. You can resize a window to take up most of the screen, or you can take a window into Full Screen Mode, each ...
🌐
OS X Daily
osxdaily.com › 2013 › 03 › 22 › 5-simple-window-management-keyboard-shortcuts-to-improve-workflow-in-mac-os-x
7 Simple Window Management Keyboard Shortcuts for Mac OS X to Improve Workflow
March 20, 2018 - Enter “Zoom” into the “Menu Title” section and then click into the Keyboard Shortcut box to define your keyboard shortcut (Control+Command+= is set in the example) Now you can hit Control+Command+= (or whatever else) to instantly zoom ...
🌐
Google Support
support.google.com › chrome › a › thread › 3456654 › what-is-the-keyboard-shortcut-to-expand-a-chrome-window-in-mac
What is the keyboard shortcut to expand a chrome window in mac? - Chrome Enterprise & Education Community
April 2, 2019 - Join the new ChromeOS and Chrome Browser Customer Community for Enterprise or the Google for Education Community Platform to connect, ask questions, and share insights with relevant peers
🌐
iDownloadBlog
idownloadblog.com › home › how to manage app windows on your mac like a pro
How to manage app windows on your Mac like a pro
December 17, 2025 - For such apps, this action will simply expand the window and leave your Mac’s menu bar and the Dock visible. ... How about getting a bigger window without going full-screen? To do that, hold the option key while clicking the maximize icon, and the app’s window will enlarge instead of entering full-screen mode. To close a window, click the red close button in its top-left corner or press the command + W shortcut on the keyboard.
🌐
MacPowerUsers
talk.macpowerusers.com › t › restore-a-minimized-window-from-dock-how-to › 33588
Restore a minimized window from Dock - how to - MPU Talk
May 11, 2023 - It has always annoyed me that when I minimise a window (using command m) I couldn’t un-minimise it using my keyboard. I’d either have to click on the dock or open the app then go to the window menu). Well … it turns ou…