Skip to content

Commit

Permalink
Add tmux_init
Browse files Browse the repository at this point in the history
  • Loading branch information
tdmanv committed Jun 22, 2020
1 parent 274e791 commit cd73114
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions tmux_init.sh
Original file line number Diff line number Diff line change
@@ -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 $@

0 comments on commit cd73114

Please sign in to comment.