From c2d0f7967aeaf7b291b9e95f4687d9ce2750e7df Mon Sep 17 00:00:00 2001 From: ckoch Date: Thu, 16 Jul 2026 17:43:26 -0400 Subject: [PATCH] bc250-remote-setup: disable view-only RDP GNOME Remote Desktop defaults RDP sessions to view-only; the whole point of RDP here is the parent driving the session to install games. Found during first real RDP setup on hardware. Co-Authored-By: Claude Fable 5 --- files/console/usr/bin/bc250-remote-setup | 2 ++ 1 file changed, 2 insertions(+) diff --git a/files/console/usr/bin/bc250-remote-setup b/files/console/usr/bin/bc250-remote-setup index 369874e..056251b 100755 --- a/files/console/usr/bin/bc250-remote-setup +++ b/files/console/usr/bin/bc250-remote-setup @@ -85,6 +85,8 @@ else unset RDP_PASS grdctl rdp enable 2>/dev/null || warn "grdctl rdp enable failed" + # GNOME defaults RDP to view-only; the parent needs control to install games + grdctl rdp disable-view-only 2>/dev/null || warn "grdctl rdp disable-view-only failed" systemctl --user enable --now gnome-remote-desktop.service \ && ok "per-user gnome-remote-desktop.service enabled" \