We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bf4fef4 + 08b0932 commit b0263e7Copy full SHA for b0263e7
1 file changed
debian/AppRun
@@ -3,6 +3,11 @@ set -e
3
4
CURRENTDIR="$(dirname "$(readlink -f "$0")")"
5
6
+# wayland doesn't work
7
+if [ -z "$I_WANT_A_BROKEN_WAYLAND_UI" ]; then
8
+ export QT_QPA_PLATFORM=xcb
9
+fi
10
+
11
if [ ! -f "/etc/udev/rules.d/53-adi-m1k-usb.rules" ]; then
12
echo "/etc/udev/rules.d/53-adi-m1k-usb.rules file not found!"
13
echo "Ignore if udev is not supported by your system"
@@ -35,9 +40,6 @@ if [ "$1" = '--getudev' ]; then
35
40
echo "Udev rules successfully created"
36
41
fi
37
42
38
-if [[ -z "$QT_QPA_PLATFORM" || "$QT_QPA_PLATFORM" =~ "wayland" ]]; then
39
- echo "Overriding to xcb for now..."
- QT_QPA_PLATFORM=xcb; # Override wayland for now
-fi
43
44
# Continue with application execution
45
exec "$CURRENTDIR"/bin/pixelpulse2 "$@"
0 commit comments