dotfiles/apps/keepassxc.sh

19 lines
306 B
Bash
Raw Normal View History

2020-09-18 04:16:15 +00:00
#!/bin/bash
DIR=$(readlink -f $(dirname $0))
. $DIR/../env.sh
# install nextcloud
case "$PM" in
apt)
sudo add-apt-repository -y ppa:phoerious/keepassxc
sudo apt-get update
sudo apt install -y keepassxc
;;
pacman)
sudo pacman -S keepassxc
;;
esac