diff --git a/macOS.ahk b/macOS.ahk index 88a0606..707878d 100644 --- a/macOS.ahk +++ b/macOS.ahk @@ -300,3 +300,16 @@ AppsKey & F10::Send {Volume_Mute} AppsKey & F11::Send {Volume_Down} AppsKey & F12::Send {Volume_Up} AppsKey::Send, {AppsKey} + +; -------------------------------- 1Password --------------------------------- + +!+Space:: ; quick access +send ^+{Space} +return + +!+c:: ; copy password +if WinActive("ahk_exe 1Password.exe") + send ^+c +else + send !+c +return