8 lines
140 B
Bash
Executable File
8 lines
140 B
Bash
Executable File
#!/bin/sh
|
|
tmux new-session -d
|
|
tmux split-window -h
|
|
tmux split-window
|
|
tmux new-window 'mutt'
|
|
tmux -2 attach-session -d
|
|
tmux select-pane -t 0
|