From d06a0cdf503527613e5c621c03636760ba8646e8 Mon Sep 17 00:00:00 2001 From: Jali Date: Tue, 28 Oct 2025 21:53:08 +0100 Subject: [PATCH] Add extra commands to open knight-tv --- .layout.tmux | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.layout.tmux b/.layout.tmux index ad3455d..2ceff66 100644 --- a/.layout.tmux +++ b/.layout.tmux @@ -1,8 +1,6 @@ #!/usr/bin/zsh # Create a layout for development on the PDP-10 - -SESSIONID=$1 -$MUX=$(where tmux) +RPDP=$(where rpdp) # Split the window at the bottom and open a $MUX split-window -v -l 8 -t ${SESSIONID}:0 telnet pidp10.local 1025 @@ -10,3 +8,7 @@ $MUX split-window -v -l 8 -t ${SESSIONID}:0 telnet pidp10.local 1025 # Split again, and connect via ssh to the host machine $MUX split-window -h -t ${SESSIONID}:0 ssh pidp10.local +# Finally, start an instance of the Knight-TV console +if [[ -v RPDP ]]; then + $RPDP tvcon +fi