Live data from Hacker News

1Password for Linux

blog.1password.com

281–282 of 282 posts

Re: 1Password for Linux

#281
post #245

Earlier quoted context omitted.

I think the universe is slowly standardizing on WebAuthn/U2F for this. The US Government got rid of passwords in 2004 by switching to smartcards, and Google also did so in 2017 by switching to hardware security tokens.

That’s fine for tech businesses with dedicated IT support, but what about consumers?

Use what Google builds, which will likely (as I mentioned) be WebAuthn based

Re: 1Password for Linux

#282
post #107

Earlier quoted context omitted.

find ~/.password-store -name '*.gpg' -printf '%P\n' | sed -e 's:.gpg$::gi' | fzf | xargs pass -c There is also an extension: https://github.com/ficoos/pass-fzf

Good point, but `pacman -S gopass` is wa-a-ay easier ;-)

I use a bash function:

  pass ()
  {
      if [ $# -eq 0 ] || ( [ $# -eq 1 ] && [ $1 = "-c" ] ); then
          find ~/.password-store -name '\*.gpg' -printf '%P\n' | sed -e 's:.gpg$::gi' | fzf | xargs /usr/local/bin/pass $@;
      else
          /usr/local/bin/pass $@;
      fi
  }
pass + fzf + bash > gopass. DOTADIW.
Post reply on HN