mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-22 19:18:35 +00:00
28 lines
717 B
Bash
28 lines
717 B
Bash
#!/bin/bash
|
|
# Description: A browser plugin for the pass password store
|
|
set -e
|
|
|
|
function _browserpass {
|
|
local browser=$1
|
|
local _prefix=/usr/lib/browserpass
|
|
case $_PLATFORM in
|
|
darwin)
|
|
_prefix=/usr/local/opt/browserpass
|
|
;;
|
|
esac
|
|
_run "[browserpass] Installing native messaging host to $browser" \
|
|
make PREFIX=$_prefix hosts-$browser-user \
|
|
-f $_prefix/lib/browserpass/Makefile
|
|
}
|
|
|
|
case $_PLATFORM in
|
|
darwin)
|
|
_recipe brew
|
|
|
|
_brew_tap amar1729/formulae
|
|
_brew browserpass
|
|
|
|
test -e /Applications/Google\ Chrome.app && _browserpass chrome
|
|
test -e /Applications/Firefox.app && _browserpass firefox
|
|
;;
|
|
esac
|