Is there a way to assign a shortcut for Minimizing a window the Alt-Space-n sequence in just one keyboardshortcut?
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
|
This script for AutoHotkey defines CTRL+M to minimize the current window:
You can define any hotkey you want by replacing the "^m". The codes to use are listed here. |
||||
|
|
|
This AutoHotKey script will set up 'Win + Space' to minimise the current window: #space::Send !{space}n |
|||
|
|