From 58f794d7b8189f8620eae2ed8be2360b012eaa16 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Sat, 13 Jun 2026 09:09:35 +0200 Subject: [PATCH] Remote into new sway session --- networking/remote_sway_alt.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 networking/remote_sway_alt.md diff --git a/networking/remote_sway_alt.md b/networking/remote_sway_alt.md new file mode 100644 index 0000000..05cd7f5 --- /dev/null +++ b/networking/remote_sway_alt.md @@ -0,0 +1,22 @@ +--- +title: New Sway Remote Desktop +tags: +- networking +requires: +- networking/remote_sway.md +--- + +Check the host is using only one display: + +```sh +test "$WAYLAND_DISPLAY" = "wayland-1" +``` + +Start a new sway session, and a `wayvnc` session: + +```sh +WLR_BACKENDS=headless WLR_LIBINPUT_NO_DEVICES=1 sway & +WAYLAND_DISPLAY=wayland-2 wayvnc +``` + +On the client, [connect as usual](networking/remote_sway.md).