可以使用 wgestures 设定指令
http://www.yingdev.com/projects/wgestures指令参考
https://superuser.com/questions/348423/minimize-all-windows-on-the-active-monitor**<kbd>Win</kbd>+<kbd>d</kbd>**
Minimize all windows on all Monitors. Press again to restore previous state
**<kbd>Win</kbd>+<kbd>m</kbd>**
Minimize all windows on all Monitors.
**<kbd>Win</kbd>+<kbd>Shift</kbd>+<kbd>m</kbd>**
Restore previously minimized windows on current Monitor
**<kbd>Win</kbd>+<kbd>Home</kbd>**
Set all windows to Minimized on current Monitor except active
**<kbd>Win</kbd>+<kbd>Space</kbd>**
Preview Desktop / make windows transparent (May not work with all Settings)
Autohotkey Script
#d::get()
get(){
WinMinimizeAll
WinGet, active_id, ID, ahk_exe Xshell.exe
WinMaximize, ahk_id %active_id%
WinGet, active_id, ID, ahk_exe mintty.exe
WinMaximize, ahk_id %active_id%
}