15 lines
231 B
Bash
15 lines
231 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export THIS=$HOME/.local/share/proton-bridge
|
||
|
export PASSWORD_STORE_DIR=$THIS/pass
|
||
|
export GNUPGHOME=$THIS/gpg
|
||
|
|
||
|
echo $PASSWORD_STORE_DIR
|
||
|
pass ls
|
||
|
|
||
|
echo $GNUPGHOME
|
||
|
gpg --list-keys
|
||
|
|
||
|
exec $HOME/.local/bin/Desktop-Bridge $@
|
||
|
|