From e7caac4dd74b9eeb99afafec6ca0eb2d0a64c5b5 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Wed, 27 Aug 2025 12:49:38 +0100 Subject: [PATCH] feat(www)!: update `ssh` command to send `$TERM_PROGRAM` --- www/src/routes/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/src/routes/+page.svelte b/www/src/routes/+page.svelte index 1b46cbd..98da3d3 100644 --- a/www/src/routes/+page.svelte +++ b/www/src/routes/+page.svelte @@ -4,7 +4,7 @@ import { onMount } from 'svelte'; import { crossfade, fade } from 'svelte/transition'; - const command = 'ssh devcomp.xyz'; + const command = 'ssh -o SendEnv=TERM_PROGRAM devcomp.xyz'; const cursor = '█' let showCheckmark = $state(false);