Enable proper KeePassXC-Browser interaction for AppImage

This commit is contained in:
Janek Bevendorff
2018-02-26 00:26:28 +01:00
parent 09d3896304
commit 2e9f247e29
3 changed files with 22 additions and 0 deletions

View File

@@ -88,6 +88,11 @@ unset XDG_DATA_DIRS
if [ "\${1}" == "cli" ]; then
shift
exec keepassxc-cli "\$@"
elif [ "\${1}" == "proxy" ]; then
shift
exec keepassxc-proxy "\$@"
elif [ -v CHROME_WRAPPER ] || [ -v MOZ_LAUNCHED_CHILD ]; then
exec keepassxc-proxy "\$@"
else
exec keepassxc "\$@"
fi