Is there a way to assign a shortcut for Minimizing a window the Alt-Space-n sequence in just one keyboardshortcut?
feedback
|
|
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. | ||||
|
feedback
|
|
This AutoHotKey script will set up 'Win + Space' to minimise the current window: #space::Send !{space}n | |||
|
feedback
|