2022-03-30 20:47:10 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2023-01-04 10:20:39 +01:00
|
|
|
# Flutter doesn't support flatpak, so Snap is the least bad Fluffy experience.
|
|
|
|
|
2022-03-30 20:47:10 +02:00
|
|
|
set -x
|
2023-05-18 11:25:47 +02:00
|
|
|
if [ -f /snap/bin/fluffychat ]; then
|
2024-02-25 11:17:04 +01:00
|
|
|
# https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1951491/comments/104
|
|
|
|
unset DBUS_SESSION_BUS_ADDRESS
|
2024-02-29 17:41:59 +01:00
|
|
|
# I am supposed to be a Finnish localizer so my eo over fi as protest
|
|
|
|
# doesn't work here!
|
|
|
|
export LANGUAGE=fi:eo:en
|
2024-03-20 05:50:18 +01:00
|
|
|
snap run fluffychat "$@"
|
2023-01-04 10:20:39 +01:00
|
|
|
else
|
2023-04-06 11:03:10 +02:00
|
|
|
/usr/bin/fluffychat
|
2023-01-04 10:20:39 +01:00
|
|
|
fi
|
2022-03-30 20:47:10 +02:00
|
|
|
set +x
|