up vote 1 down vote favorite
share [g+] share [fb]

Is there a way to assign a shortcut for Minimizing a window the Alt-Space-n sequence in just one keyboardshortcut?

link|improve this question

61% accept rate
Just get a program that makes key-board shortcuts for you. My favorite is called Quic-Keys. Cost: $3 – D'Arvit Sep 11 '09 at 9:11
feedback

2 Answers

up vote 2 down vote accepted

This script for AutoHotkey defines CTRL+M to minimize the current window:

^m::WinMinimize,A

You can define any hotkey you want by replacing the "^m". The codes to use are listed here.

link|improve this answer
feedback

This AutoHotKey script will set up 'Win + Space' to minimise the current window:

#space::Send !{space}n
link|improve this answer
...though Snark's 'WinMinimize' looks more elegent. – pelms Sep 11 '09 at 16:02
feedback

Your Answer

 
or
required, but never shown

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