Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1001 Bytes

2017-07-23-autohotkey.md

File metadata and controls

47 lines (34 loc) · 1001 Bytes
title date author layout classes permalink tags
AutoHotkey
2017-07-23 05:03:47 +0000
gerryw1389
single
wide
/2017/07/autohotkey/
LocalSoftware

Description:

So I downloaded a game from Steam the other day and it was driving me crazy that the game kept kicking me out do to certain keyboard combos. I downloaded AutoHotkey and added it to my QuickCliq setup so I can then launch before I start gaming.

To Resolve:

  1. AutoHotkey files are as simple is creating a file with the extension of .ahk.

  2. Here is the one I created for when I'm gaming:

    ; Disable Alt+Tab
    !Tab::Return
    
    ; Disable Windows Key + Tab
    #Tab::Return
    
    ; Disable Left Windows Key
    LWin::Return
    
    ; Disable Right Windows Key
    RWin::Return
    
    ; disable ALT+F4
    !F4:: return
    
    ; disable ALT+ESC
    !Escape:: return
    
    ; disable CTRL+ESC
    ^Escape:: return
    
    ; disable ALT+Q
    !q:: return