Skip to content

Instantly share code, notes, and snippets.

@nathanqthai
Created July 11, 2019 15:48
Show Gist options
  • Save nathanqthai/409b03d665496248f0fb1805ac68aaf4 to your computer and use it in GitHub Desktop.
Save nathanqthai/409b03d665496248f0fb1805ac68aaf4 to your computer and use it in GitHub Desktop.
an example of a tmux workspace setup script
#!/bin/sh
session="dash$$"
# code editor
tmux new-session -d -s $session
tmux send-keys 'vim' Enter
tmux split-window -h -p 40
tmux send-keys 'htop' Enter
tmux select-pane -t 1
tmux split-window -v -p 30
tmux send-keys 'ls' Enter
# select editor
tmux select-pane -t 1
# go
tmux -2 attach-session -t $session
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment