mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 11:39:25 +00:00
9 lines
188 B
Text
9 lines
188 B
Text
|
#!/bin/bash
|
||
|
|
||
|
HERE="$(dirname "$(readlink -f "${0}")")"
|
||
|
echo $HERE
|
||
|
|
||
|
# Tails 5.8 sets QT_QPA_PLATFORM to wayland which breaks our app
|
||
|
export QT_QPA_PLATFORM=xcb
|
||
|
${APPDIR}/usr/bin/feather $*
|