Hello.
On 2021-09-22 22:53:26, Markus Heinz wrote:
- When moving the mouse pointer above the top bar of sway the top bar will crash with a segmentation fault.
I also ran into this. If you run sway with `dbus-run-session sway` rather than just `exec sway`, this fixes the issue.
There is a relevant bug over on the Alpine linux bug tracker for this: https://gitlab.alpinelinux.org/alpine/aports/-/issues/10673
Thank you for sorting this one out. My start script now looks like this: ----------------------------------------------------------------------- #!/bin/bash export MOZ_ENABLE_WAYLAND=1 export _JAVA_AWT_WM_NONREPARENTING=1 if [ ! -d /tmp/${USER} ]; then mkdir /tmp/${USER} fi chmod 700 /tmp/${USER} export XDG_RUNTIME_DIR=/tmp/${USER} exec dbus-run-session --dbus-daemon=/usr/sbin/dbus-daemon sway ----------------------------------------------------------------------- Best regards Markus Heinz