mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-14 20:49:23 +01:00
18 lines
407 B
Bash
Executable File
18 lines
407 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Flutter doesn't support flatpak, so Snap is the least bad Fluffy experience.
|
|
# I presume repo version is always outdated, so fallback to flathub s less
|
|
# bad.
|
|
|
|
set -x
|
|
if [ -f /snap/bin/fluffychat ]
|
|
then
|
|
snap run fluffychat $@
|
|
elif [ -f /var/lib/flatpak/exports/bin/im.fluffychat.Fluffychat ]
|
|
then
|
|
flatpak run im.fluffychat.Fluffychat $@
|
|
else
|
|
/usr/bin/fluffychat
|
|
fi
|
|
set +x
|