Skip to content

Instantly share code, notes, and snippets.

@francesco-plt
Created December 22, 2020 14:58
Show Gist options
  • Save francesco-plt/b6a136475a02541ea2ebdcf3c382ee0d to your computer and use it in GitHub Desktop.
Save francesco-plt/b6a136475a02541ea2ebdcf3c382ee0d to your computer and use it in GitHub Desktop.
A collection of ahk shortcuts I'm using on my laptop which improved my workflow
#SingleInstance, force
; A collection of ahk shortcuts which improved my workflow
; QUICK OPEN SHORTCUTS __________________________________________________________
; open edge chromium
#n:: Run msedge ; win+n
return
; open terminal
#t:: Run wr ; win+t
return
; open onenote
#o:: Run, onenote-cmd:// ; win+o
return
; run task manager
#j:: Run taskmgr ; win+j
return
; Open home folder
^#h::Run "%userprofile%\" ; win+ctrl+h
return
; MISC SHORTCUTS _________________________________________________________________
; mac like alt+f4 gesture
#q:: Send !{f4} ; win+q
return
; restart windows explorer to fix various windows bugs
^#e:: ; ctrl+win+e
; RunAs, Administrator
Run *RunAs cmd.exe /c "taskkill /f /im explorer.exe && start explorer.exe"
return
; Always on Top
^SPACE:: Winset, Alwaysontop, , A ; ctrl + space
Return
; single press minimize
!Down::WinMinimize, A
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment