mirror of
https://github.com/quexten/goldwarden.git
synced 2024-12-19 08:41:47 +03:00
10 lines
283 B
Bash
10 lines
283 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Check if the "com.quexten.Goldwarden" Flatpak is installed
|
|
if flatpak list | grep -q "com.quexten.Goldwarden"; then
|
|
flatpak run --command=goldwarden com.quexten.Goldwarden "$@"
|
|
else
|
|
# If not installed, attempt to run the local version
|
|
goldwarden "$@"
|
|
fi
|