fix(kiosk): companion remote control now reaches kiosk displays
All checks were successful
Demo images / Build & push demo images (push) Successful in 2m54s

App.vue skipped starting the browser-side remote relay on kiosks, citing a
system-level xdotool injector that no longer exists — the backend's
remote-input path is relay-only (validate + broadcast). With no consumer,
companion input was silently dropped on TVs. Start the relay on kiosks
like everywhere else; rides the next release + ISO via the web bundle.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
archipelago 2026-07-21 13:49:10 -04:00
parent 2a376ab275
commit b23f46c3d8
2 changed files with 9 additions and 10 deletions

View File

@ -159,13 +159,12 @@ watch(() => appStore.isAuthenticated, (authenticated) => {
if (authenticated) {
messageToast.startPolling()
screensaverStore.resetInactivityTimer()
// Don't start relay on kiosk kiosk gets input via xdotool (system-level),
// relay would duplicate every keystroke/click as DOM events
const isKiosk = localStorage.getItem('kiosk') === 'true'
|| new URLSearchParams(window.location.search).has('kiosk')
if (!isKiosk) {
startRemoteRelay()
}
// Kiosk included: the backend's remote-input path is relay-only (it
// validates and broadcasts; it never runs xdotool), so the browser-side
// relay is the ONLY consumer of companion input. Skipping it on kiosk
// an assumption from a long-gone system-level xdotool injector left
// TVs deaf to the companion remote.
startRemoteRelay()
} else {
messageToast.stopPolling()
toastMessage.value = { show: false, text: '', fromPubkey: '' }

View File

@ -88,9 +88,9 @@ const router = createRouter({
// normal app (onboarding → login → dashboard) like any other client.
// This route only persists kiosk mode + safe-area insets, then redirects
// to the root app. The launcher still points Chromium here (not directly
// at `/`) so the 'kiosk' flag gets set — App.vue uses it to skip the
// remote relay, which would otherwise double xdotool input on the kiosk
// display. Public so the auth guard doesn't bounce us before beforeEnter.
// at `/`) so the 'kiosk' flag gets set — App.vue keys kiosk-only styling
// (kiosk-mode/kiosk-safe-area classes, dark AIUI pin) off it. Public so
// the auth guard doesn't bounce us before beforeEnter.
path: '/kiosk',
name: 'kiosk',
meta: { public: true },