<p>Win+Ctrl+Maj+→ : Déplacer la fenêtre active vers le bureau suivant</p>
<p>Win+Ctrl+Maj+← : Déplacer la fenêtre active vers le bureau précédent</p>
<p>Ce script <code>ahk</code> fonctionne pour moi :</p>
<pre><code class="lang-auto">^#+Left::
n := VD.getCurrentDesktopNum()
if n = 1
{
Return
}
n -= 1
VD.MoveWindowToDesktopNum("A",n), VD.goToDesktopNum(n)
Return
^#+Right::
n := VD.getCurrentDesktopNum()
if n = % VD.getCount()
{
Return
}
n += 1
VD.MoveWindowToDesktopNum("A",n), VD.goToDesktopNum(n)
Return
</code></pre>
<p>Vous pouvez trouver plus d’informations sur <a>https://github.com/FuPeiJiang/VD.ahk</a> et <a>https://www.autohotkey.com/</a></p>