#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

; windows key for alt-p and right control
!p::
KeyWait Alt
Send,{LWin}
return

RCtrl::RWin
return

; linux command line for alt shift enter
!+Enter::
Run, C:\Users\Luke\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\linux
return

; force close window for alt shift c
!+c::
Send !{f4}
return

; full screenshot (no box selection) for alt printscreen
!PrintScreen::Send #{PrintScreen}
return