Here's some quick and dirty AutoHotkey code to cause XWindows Dock to toggle visibility when you ctrl+alt+R (just like rocketdock) #NoTrayIcon GroupAdd, XWDWins, XWindows Dock return ^!r:: WinGet, visible, Count, XWindows Dock if visible = 0 WinShow, ahk_group XWDWins else WinHide, ahk_group XWDWins return of course, an official solution with nice animation, etc would be great, but this works as a temporary workaround if you need to run something fullscreen or what have you.