From d176616617489a41c6601e92b917247862425a83 Mon Sep 17 00:00:00 2001 From: Dany LE Date: Sun, 20 Jul 2025 09:48:46 +0200 Subject: [PATCH] fix: add user to seat group + work around for qemu wlroot mouse does not display correctly --- recipes-core/base-files/base-files_%.bbappend | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/recipes-core/base-files/base-files_%.bbappend b/recipes-core/base-files/base-files_%.bbappend index 0294a80..19735a8 100644 --- a/recipes-core/base-files/base-files_%.bbappend +++ b/recipes-core/base-files/base-files_%.bbappend @@ -22,3 +22,11 @@ cat << EOF >> "${D}${sysconfdir}/profile" export MACHINE=${MACHINE} EOF } + +# workaround for Qemu mouse problem: +# https://github.com/swaywm/sway/issues/6581 +do_install:append:qemux86-64 () { + cat << 'EOF' >> "${D}${sysconfdir}/profile" +export WLR_NO_HARDWARE_CURSORS=1 +EOF +} \ No newline at end of file