Add extra commands to open knight-tv

This commit is contained in:
2025-10-28 21:53:08 +01:00
parent 72579be239
commit d06a0cdf50

View File

@@ -1,8 +1,6 @@
#!/usr/bin/zsh #!/usr/bin/zsh
# Create a layout for development on the PDP-10 # Create a layout for development on the PDP-10
RPDP=$(where rpdp)
SESSIONID=$1
$MUX=$(where tmux)
# Split the window at the bottom and open a # Split the window at the bottom and open a
$MUX split-window -v -l 8 -t ${SESSIONID}:0 telnet pidp10.local 1025 $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 # Split again, and connect via ssh to the host machine
$MUX split-window -h -t ${SESSIONID}:0 ssh pidp10.local $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