mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Merge pull request #59 from jkt628/develop
search directory configured via environment
This commit is contained in:
commit
fdad028e73
1 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
### change the path to suit your installation or set KDBX_SEARCH before calling ###
|
||||||
|
: ${KDBX_SEARCH:=~/.KeePass/*.kdbx}
|
||||||
|
|
||||||
PROG="$(basename $0)"
|
PROG="$(basename $0)"
|
||||||
|
|
||||||
function daemon_main {
|
function daemon_main {
|
||||||
|
@ -11,8 +14,8 @@ function daemon_main {
|
||||||
|
|
||||||
# fetch KeePass database passwords from kdewallet
|
# fetch KeePass database passwords from kdewallet
|
||||||
declare -A DBs
|
declare -A DBs
|
||||||
### change the path to suit your installation ###
|
for DBPATH in $KDBX_SEARCH; do
|
||||||
for DBPATH in ~/.keepassx/*.kdbx; do
|
[[ -L "$DBPATH" ]] && DBPATH=$(readlink --canonicalize "$DBPATH")
|
||||||
DBs[$DBPATH]=$(qdbus org.kde.kwalletd5 /modules/kwalletd5 org.kde.KWallet.readPassword "$handle" "Passwords" "$DBPATH" "$PROG")
|
DBs[$DBPATH]=$(qdbus org.kde.kwalletd5 /modules/kwalletd5 org.kde.KWallet.readPassword "$handle" "Passwords" "$DBPATH" "$PROG")
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue