From cd73114f6eb42b6353e0f956313964919a0aa09c Mon Sep 17 00:00:00 2001 From: Tom Manville Date: Sun, 21 Jun 2020 21:24:09 -0700 Subject: [PATCH] Add tmux_init --- tmux_init.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 tmux_init.sh diff --git a/tmux_init.sh b/tmux_init.sh new file mode 100755 index 0000000..47eebc6 --- /dev/null +++ b/tmux_init.sh @@ -0,0 +1,33 @@ +#! /bin/bash +# +# dev.sh +# Author tom + +set -o errexit +set -o nounset +set -o pipefail +set -o xtrace + + +main() { + tmux new -s local -d + tmux send-keys 'tmux show-buffer | xclip' C-m + + pushd ~/src/ops + tmux new -s ops -d + popd + + pushd ~/src/kanister + tmux new -s kanister -d + popd + + pushd ~/src/k10 + tmux new -s kasten -d + popd + + pushd ~/Documents/interviews + tmux new -s interviews -d + popd +} + +main $@