New comment by superiums on void-packages repository https://github.com/void-linux/void-packages/issues/41180#issuecomment-1365580088 Comment: Thanks for your attention, dear Sqvid and oliver-cfc. i've tried it more and found this was related to my dbus session enviroment at last. ### this is my session start script: 1. way 1 ``` #!/bin/sh # dbus export $(dbus-launch) # IME export GTK_IM_MODULE=fcitx export QT_IM_MODULE=fcitx export XMODIFIERS="@im=fcitx" export GLFW_IM_MODULE=ibus # openCV export OPENCV_LOG_LEVEL=ERROR #voidLiinux doc export QT_QPA_PLATFORM=wayland-egl export ELM_DISPLAY=wl export SDL_VIDEORIVER=wayland # firefox export MOZ_ENABLE_WAYLAND=1 # Session export DESKTOP_SESSION=wayland export XDG_SESSION_TYPE=wayland export XDG_SESSION_DESKTOP=Wayfire export XDG_CURRENT_DESKTOP=Wayfire # Wayland stuff export MOZ_ENABLE_WAYLAND=1 export QT_QPA_PLATFORM=wayland export SDL_VIDEODRIVER=wayland export _JAVA_AWT_WM_NONREPARENTING=1 # exec dbus-launch --exit-with-session wayfire $@ exec wayfire $@ ``` 2. way 2 ``` #!/bin/sh # dbus export $(dbus-launch) # IME export GTK_IM_MODULE=fcitx export QT_IM_MODULE=fcitx export XMODIFIERS="@im=fcitx" export GLFW_IM_MODULE=ibus # openCV export OPENCV_LOG_LEVEL=ERROR #voidLiinux doc export QT_QPA_PLATFORM=wayland-egl export ELM_DISPLAY=wl export SDL_VIDEORIVER=wayland # firefox export MOZ_ENABLE_WAYLAND=1 # Session export DESKTOP_SESSION=wayland export XDG_SESSION_TYPE=wayland export XDG_SESSION_DESKTOP=sway export XDG_CURRENT_DESKTOP=sway # Wayland stuff export MOZ_ENABLE_WAYLAND=1 export QT_QPA_PLATFORM=wayland export SDL_VIDEODRIVER=wayland export _JAVA_AWT_WM_NONREPARENTING=1 # exec dbus-launch --exit-with-session sway $@ exec sway $@ ``` 4. way 3: directly type `wayfire` 5. way 4: directly type `sway` ### the result is : way 1 not work. (but the reason i use this way is only after export $(dbus-run) could let pipewire in obs works, and let fcitx works in chromium , as discussed in [https://github.com/WayfireWM/wayfire/issues/1611](https://github.com/WayfireWM/wayfire/issues/1611) ) way 2,3,4 works.