mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 04:27:39 +03:00
parent
ceb2cd2b67
commit
3efad4e14b
1 changed files with 8 additions and 16 deletions
|
@ -23,26 +23,18 @@
|
||||||
# For format of parsed arguments, see "Connection-based messaging" at:
|
# For format of parsed arguments, see "Connection-based messaging" at:
|
||||||
# https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/Native_messaging
|
# https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/Native_messaging
|
||||||
|
|
||||||
readonly appId='org.keepassxc.KeePassXC'
|
|
||||||
# Chromium, Google Chrome, Vivaldi & Brave
|
# Chromium, Google Chrome, Vivaldi & Brave
|
||||||
readonly arg1='chrome-extension://oboonakemofpalcgghocfoadofidjkkk'
|
readonly arg1='chrome-extension://oboonakemofpalcgghocfoadofidjkkk'
|
||||||
# Firefox & Tor Browser
|
# Firefox & Tor Browser
|
||||||
readonly arg2='keepassxc-browser@keepassxc.org'
|
readonly arg2='keepassxc-browser@keepassxc.org'
|
||||||
|
|
||||||
# Browser integration is enabled if unix socket exists
|
# Check arguments to see if this was a proxy launch from the browser
|
||||||
if [[ -S "${XDG_RUNTIME_DIR}/app/${appId}/${appId}.BrowserServer" ]]; then
|
# Use =~ to account for minor variations in the chrome extension
|
||||||
# Using the =~ operator is intended to allow small variations
|
if [[ "$1" =~ "$arg1" || "$2" == "$arg2" ]]; then
|
||||||
# in the parameters, like and ending slash.
|
exec keepassxc-proxy "$@"
|
||||||
# shellcheck disable=2076
|
elif [[ "$1" == "cli" ]]; then
|
||||||
if [[ "$1" =~ "${arg1}" ]] || [[ "$2" =~ "${arg2}" ]]; then
|
|
||||||
exec keepassxc-proxy "$@"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# If the first argument is "cli", execute keepassxc-cli instead.
|
|
||||||
if [[ "$1" == "cli" ]]; then
|
|
||||||
exec keepassxc-cli "${@:2}"
|
exec keepassxc-cli "${@:2}"
|
||||||
|
else
|
||||||
|
# If no arguments are matched or browser integration is off, execute keepassxc
|
||||||
|
exec keepassxc "$@"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If no arguments are matched or browser integration is off, execute keepassxc
|
|
||||||
exec keepassxc "$@"
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue