Hello. Thank you for bringing Wayland support to CRUX. Here are my first impressions using "sway": - When moving the mouse pointer above the top bar of sway the top bar will crash with a segmentation fault. - When switching to another console with Ctrl-Alt-Fn the sway session will be terminated. I don't know if this is intended. - Besides from the two issues mentioned above it seems to work pretty well. Here some hints for others who want to try it: ------------------------------------------------------------------- input "type:keyboard" { xkb_layout de xkb_variant nodeadkeys } ------------------------------------------------------------------- This section in the sway config file will enable a german keyboard. Adjust to your preferred locale. ------------------------------------------------------------------- for_window [shell=".*"] title_format "%title :: %shell" ------------------------------------------------------------------- This line in sway config will show in the title bar of an application window if it runs with "xwayland" or natively ("xdg_shell"). I wrote a small shell script to start sway from terminal more simply: ------------------------------------------------------------------- #!/bin/bash export MOZ_ENABLE_WAYLAND=1 if [ ! -d /tmp/markus ]; then mkdir /tmp/markus fi chmod 700 /tmp/markus export XDG_RUNTIME_DIR=/tmp/markus sway ------------------------------------------------------------------- The MOZ_ENABLE_WAYLAND variable will make firefox run natively on wayland. The sway session can be exited gracefully with Windowskey-Shift-e if not configured otherwise. Best regards Markus Heinz