fix: add user to seat group + work around for qemu wlroot mouse does not display correctly

This commit is contained in:
2025-07-20 09:48:46 +02:00
parent bb5a5245c8
commit d176616617

View File

@ -22,3 +22,11 @@ cat << EOF >> "${D}${sysconfdir}/profile"
export MACHINE=${MACHINE} export MACHINE=${MACHINE}
EOF 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
}