MoveToDesktop
MoveToDesktop copied to clipboard
Additional (optional) hotkey to move and switch desktop
I would like to have the possibility to use separate hotkeys for moving a window and for moving a window and switching desktop, ex. CTRL+ALT+Right/Left for moving windows, and WIN+ALT+Right/Left for moving a window and switching desktop.
+1
+2
+3, but anyway I do it with autohotkey (combine two hotkeys with one hotkey)
+4
+3, but anyway I do it with autohotkey (combine two hotkeys with one hotkey)
Could tell me how to edit the autohotkey script file, I am really new to this! Thank you so much!
+3, but anyway I do it with autohotkey (combine two hotkeys with one hotkey)
Could tell me how to edit the autohotkey script file, I am really new to this! Thank you so much!
Something like this:
#,::
Send, {LWinDown}{AltDown}{Left}{LWinUp}{AltUp}
Send, {LWinDown}{CtrlDown}{Left}{LWinUp}{CtrlUp}
Return
#.::
Send, {LWinDown}{AltDown}{Right}{LWinUp}{AltUp}
Send, {LWinDown}{CtrlDown}{Right}{LWinUp}{CtrlUp}
Return
https://autohotkey.com/docs/Hotkeys.htm