Skip to content

Instantly share code, notes, and snippets.

@joarhal
Created August 13, 2017 11:03
Show Gist options
  • Save joarhal/75a26277fe5414f27e1aebad23b9b23e to your computer and use it in GitHub Desktop.
Save joarhal/75a26277fe5414f27e1aebad23b9b23e to your computer and use it in GitHub Desktop.
autohotkey script
SetTitleMatchMode, 2 ; Makes matching the titles easier
Suspend On
i::Up
j::Left
k::Down
l::Right
u::Home
o::End
p::PgUp
`;::PgDn
a::LAlt
'::Enter
[::BackSpace
]::Del
`::
{
; put th`ne hiding windows stuff here
SendMessage,0x0111,888,,,ahk_class MediaPlayerClassicW
WinHide, Media Player Classic
Return
}
m::
{
; put the functions to show everything again here
DetectHiddenWindows, On
WinShow, Media Player Classic
SendMessage,0x0111,887,,,ahk_class MediaPlayerClassicW
Return
}
LAlt::Suspend Off
LAlt Up::Suspend On
/*LAlt::Suspend Off
LAlt Up::Suspend On*/
/*
CapsLock::Suspend Off
CapsLock Up::Suspend On
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment