Skip to content

Instantly share code, notes, and snippets.

@jaywick
Last active March 6, 2017 05:17
Show Gist options
  • Save jaywick/ba6a9c1df77c0dd53fc0a5c94cebce65 to your computer and use it in GitHub Desktop.
Save jaywick/ba6a9c1df77c0dd53fc0a5c94cebce65 to your computer and use it in GitHub Desktop.
Switch user profile in Chrome with `Ctrl + M`
#IfWinActive ahk_exe chrome.exe
^m::
SendInput ^+m
SendInput {Down}{Down}
SendInput {Enter}
return
!m::
SendInput {f6}
SendInput ^c
SendInput ^+m
SendInput {Down}{Down}
SendInput {Enter}
SendInput ^v{Enter}
return
#IfWinActive
@jaywick
Copy link
Author

jaywick commented Mar 6, 2017

Assigned alt + m to duplicate tab in other user's window

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