Fix keepassxc starting without pass working
This commit is contained in:
parent
35d4ddae4e
commit
c5ad640c8a
1 changed files with 4 additions and 1 deletions
|
@ -103,7 +103,10 @@ _autostart_run_xorg () {
|
||||||
if ! pgrep -x keepassxc
|
if ! pgrep -x keepassxc
|
||||||
then
|
then
|
||||||
pass x
|
pass x
|
||||||
(pass keepass | head -n 1 | keepassxc --pw-stdin ~/sync/passwords.kdbx) &
|
if [ $? -eq 0 ]
|
||||||
|
then
|
||||||
|
(pass keepass | head -n 1 | keepassxc --pw-stdin ~/sync/passwords.kdbx) &
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
autoinstall graphical
|
autoinstall graphical
|
||||||
|
|
Loading…
Reference in a new issue