Skip to content

Instantly share code, notes, and snippets.

@davebrny
Last active February 12, 2017 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davebrny/e617d196502fa4d4fc4806edaef1a50a to your computer and use it in GitHub Desktop.
Save davebrny/e617d196502fa4d4fc4806edaef1a50a to your computer and use it in GitHub Desktop.
(autohotkey) - window management hotkeys remapped for one handed use
+#w::send #{up} ; maximise window
+#x::send #{down} ; minimize window
+#a::send #{left}{Lwin up} ; snap window left
+#d::send #{right}{Lwin up} ; snap window right
+#s::send #+{left} ; move window to another monitor
+#z::send !{esc} ; cycle through all windows
#\::send !{tab}{tab up} ; toggle between this window and the last
#z::send #{tab} ; windows 10 task switcher
^#a::send ^#{left} ; switch to previous virtual desktop (windows 10)
^#d::send ^#{right} ; switch to next virtual desktop
/*
[script info]
version = 1.1
description = window management hotkeys remapped for one handed use
author = davebrny
source = https://gist.github.com/davebrny/e617d196502fa4d4fc4806edaef1a50a
*/
@davebrny
Copy link
Author

shift windows

window management hotkeys remapped for one handed use

shift win + w   maximise window
shift win + x   minimize window
shift win + a   snap window left
shift win + d   snap window right

shift win + s   move window to another monitor
shift win + z   cycle through all windows

 

win + \   toggle between the current window and the last
win + z   windows 10 task switcher

ctrl win + a   switch to previous virtual desktop (windows 10)
ctrl win + d   switch to next virtual desktop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment