From 553cb2204b0bf27afe13c6332f5679bbd47172a0 Mon Sep 17 00:00:00 2001 From: srdusr Date: Wed, 24 Sep 2025 05:01:20 +0200 Subject: Update/Overhaul --- unix/utils/waypipe_app | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 unix/utils/waypipe_app (limited to 'unix/utils/waypipe_app') diff --git a/unix/utils/waypipe_app b/unix/utils/waypipe_app new file mode 100755 index 0000000..a8520bc --- /dev/null +++ b/unix/utils/waypipe_app @@ -0,0 +1,16 @@ +#!/bin/sh + +# Usage: ./waypipe_app user@remote +# Example: ./waypipe_app user@remote gedit + +if [ $# -lt 2 ]; then + echo "Usage: $0 user@remote [args...]" + exit 1 +fi + +REMOTE=$1 +shift +APP="$@" + +# Run the app remotely, forward display over SSH with waypipe +waypipe ssh "$REMOTE" $APP -- cgit v1.2.3