dotfiles/bin/genwgQR

21 lines
601 B
Plaintext
Raw Normal View History

#!/bin/bash
keepassdb="$HOME/Nextcloud/passwords/Passwords.kdbx"
type qrencode >/dev/null 2>&1 || { printf "qrencode is not installed\n" >&2; exit 1; }
type keepassxc-cli >/dev/null 2>&1 || { printf "KeepassXC is not installed\n" >&2; exit 1; }
2020-10-13 07:13:20 +00:00
printf "Enter password for %s: " "$keepassdb"
read -r -s password
printf "\n"
printf "Enter device name you want to generate the code for: "
2020-10-13 07:13:20 +00:00
read -r device
printf "Enter the tunnel name: "
2020-10-13 07:13:20 +00:00
read -r tunnel
echo "$password" | keepassxc-cli show -q --attributes Notes "$keepassdb" /Wireguard/"$device"/"$tunnel" | qrencode -t ansiutf8
unset password