From 72579be239bd70634620dd0dba33338cd481e200 Mon Sep 17 00:00:00 2001 From: Jali Date: Tue, 28 Oct 2025 21:16:18 +0100 Subject: [PATCH] Add layout for tmux ide options --- .layout.tmux | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .layout.tmux diff --git a/.layout.tmux b/.layout.tmux new file mode 100644 index 0000000..ad3455d --- /dev/null +++ b/.layout.tmux @@ -0,0 +1,12 @@ +#!/usr/bin/zsh +# Create a layout for development on the PDP-10 + +SESSIONID=$1 +$MUX=$(where tmux) + +# Split the window at the bottom and open a +$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 +