From d7fe390d095cb6c914cbcaef9effc32d47a7347f Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Wed, 10 Apr 2024 22:40:46 +0100 Subject: [PATCH] Add 1Password mappings --- macOS.ahk | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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