74c7092bbd
All Asteroid apps are launched with the "invoker" which needs the booster running. Make sure this happens when the UI starts. Alternatively we could use superd to launch it but for a single executable this is good enough for now.
13 lines
333 B
Bash
13 lines
333 B
Bash
#!/bin/sh
|
|
|
|
export QT_IM_MODULE=qtvirtualkeyboard
|
|
export QT_QPA_PLATFORM=eglfs
|
|
export QT_QPA_EGLFS_INTEGRATION=eglfs_kms
|
|
|
|
# Default locale, will be overwritten by the environment once the user
|
|
# has chosen their language in the setup screen
|
|
export LANG=en_GB.utf8
|
|
|
|
/usr/libexec/mapplauncherd/booster-qt5 &
|
|
|
|
/usr/bin/asteroid-launcher
|