New comment by yyny on void-packages repository https://github.com/void-linux/void-packages/issues/50126#issuecomment-2091254013 Comment: Can confirm too, it is ultimately a problem in `mutter` which [seems to already be fixed](https://gitlab.gnome.org/GNOME/mutter/-/commit/9f89421ef5abfe5143a777aa33eee308e81a7055). This script should temporarily fix the crash: ```sh CURSOR_THEME="$(gsettings get org.gnome.desktop.interface cursor-theme | tr -d "'")" sudo ln -s "/usr/share/icons/$CURSOR_THEME/cursors/default" "/usr/share/icons/$CURSOR_THEME/cursors/dnd-none" sudo ln -s "/usr/share/icons/$CURSOR_THEME/cursors/default" "/usr/share/icons/$CURSOR_THEME/cursors/dnd-move" ``` (edit): fixed the script for your copy-pasting convenience.