I'm using wayland/sway.
Which specific software packages eg xorg related , can I safely remove ?
Which specific software packages eg xorg related , can I safely remove ?
Installed packages to be REMOVED:
xf86-input-keyboard: 1.9.0_4
xf86-input-libinput: 0.30.0_1
xf86-input-mouse: 1.9.3_3
xf86-video-amdgpu: 19.1.0_2
xf86-video-ati: 19.1.0_4,1
xf86-video-dummy: 0.3.8_3
xf86-video-scfb: 0.0.5_2
xf86-video-vesa: 2.5.0
xorg: 7.7_3
xorg-drivers: 7.7_6
xorg-server: 1.20.11_3,1
xorg-fonts-truetype-7.7_1 X.Org TrueType fonts
xorgproto-2021.4 X Window System unified protocol definitions
It's ok, i only need two packages.Be aware that Wayland (respectively the compositor you are using) might have XWayland compiled it (i.e. support for legacy Xorg software). That support might require some Xorg packages (maybe even xorg-server).
pkg info | grep -i xorg 0
xorg-fonts-truetype-7.7_1 X.Org TrueType fonts
xorgproto-2021.4 X Window System unified protocol definitions
cat ./startswayJust a stupid question.
How do you manage to launch your session?
#!/usr/local/bin/zsh
export XDG_RUNTIME_DIR=/home/x/TMP
export XDG_SESSION_TYPE=wayland
export XKB_DEFAULT_LAYOUT="be(nodeadkeys)"
export XKB_DEFAULT_RULES=evdev
export GDK_BACKEND=wayland
export QT_QPA_PLATFORM=wayland
export QT_QPA_PLATFORMTHEME="qt5ct"
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
export SDL_VIDEODRIVER=wayland
export MOZ_ENABLE_WAYLAND=1
export WM=sway
export CLUTTER_BACKEND=wayland
export BEMENU_BACKEND=wayland
exec dbus-launch --sh-syntax --exit-with-session sway
thank you, i will give it a try after work.cat ./startsway
Code:#!/usr/local/bin/zsh export XDG_RUNTIME_DIR=/home/x/TMP export XDG_SESSION_TYPE=wayland export XKB_DEFAULT_LAYOUT="be(nodeadkeys)" export XKB_DEFAULT_RULES=evdev export GDK_BACKEND=wayland export QT_QPA_PLATFORM=wayland export QT_QPA_PLATFORMTHEME="qt5ct" export QT_WAYLAND_DISABLE_WINDOWDECORATION=1 export SDL_VIDEODRIVER=wayland export MOZ_ENABLE_WAYLAND=1 export WM=sway export CLUTTER_BACKEND=wayland export BEMENU_BACKEND=wayland exec dbus-launch --sh-syntax --exit-with-session sway
Code:export XDG_SESSION_TYPE=wayland export GDK_BACKEND=wayland export QT_QPA_PLATFORM=wayland export SDL_VIDEODRIVER=wayland export MOZ_ENABLE_WAYLAND=1 export CLUTTER_BACKEND=wayland export BEMENU_BACKEND=wayland
DISPLAY
env variable? It would be a mess (like this).