18 lines
271 B
Bash
18 lines
271 B
Bash
|
#!/usr/bin/zsh
|
||
|
|
||
|
# insall latest from the PPA
|
||
|
sudo add-apt-repository -y \
|
||
|
ppa:phoerious/keepassxc
|
||
|
|
||
|
sudo apt update -y
|
||
|
sudo apt install -y \
|
||
|
keepassxc
|
||
|
|
||
|
|
||
|
# link config
|
||
|
mkdir -p ~/.config/keepassxc/
|
||
|
cd /Cfg/keepassxc/
|
||
|
|
||
|
ln -s `pwd`/keepassxc.ini \
|
||
|
~/.config/keepassxc/
|