Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 919 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 919 Bytes

PassChooser

macOS UI for selecting and copying password into clipboard

Installation

  • Make sure pass command works in the terminal

  • Install Hammerspoon

  • Install PassChooser.spoon

    • Download the .zip, uncompress it and double-click on the Spoon
    • ...or clone the repo and move it to ~/.hammerspoon/Spoons/
  • Load and configure the Spoon via ~/.hammerspoon/init.lua

local PassChooser = hs.loadSpoon('PassChooser')

-- Bind ⌘+p
PassChooser:bindHotkeys({
  show={{'cmd'}, 'p'},
})

-- Optional config
PassChooser:init({
  -- Clear password from clipboard after N seconds
  -- Defaults to 0 which disables this
  clearAfter=10,
  -- Path to GPG-encrypted passwords
  storePath='~/.password-store/',
})
  • Reload Hammerspoon