dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 4336226122de8841d338b690aeb5d47655ad94a6
parent 2c0836cd700581190ac4e796a88d272eb6d0ae4b
Author: Anders Damsgaard Christensen <adc@geo.au.dk>
Date:   Fri, 20 May 2016 13:18:07 -0700

update utility tmux session

Diffstat:
Mbin/tmux-utility.sh | 33+++++++++++++++++++++++----------
1 file changed, 23 insertions(+), 10 deletions(-)

diff --git a/bin/tmux-utility.sh b/bin/tmux-utility.sh @@ -8,19 +8,32 @@ then # Create new session, name it, name the window, detach tmux new-session -s $SESSION -n misc -d - #tmux send-keys -t $SESSION 'mutt' C-m # process in first pane - tmux send-keys -t $SESSION 'irc.sh' C-m # process in first pane - tmux split-window -h -p 65 -t $SESSION # horizontal split + tmux send-keys -t $SESSION 'echo $PWD' C-m + tmux send-keys -t $SESSION 'mutt' C-m + + tmux split-window -h -t $SESSION + tmux send-keys -t $SESSION 'fortune' C-m + + tmux split-window -h -t $SESSION + tmux send-keys -t $SESSION 'vimpc' C-m + + tmux split-window -h -t $SESSION + tmux send-keys -t $SESSION 'mosh ad@idkfa.ucsd.edu' C-m + + tmux select-layout tiled + + #tmux send-keys -t $SESSION 'irc.sh' C-m # process in first pane + #tmux split-window -h -p 65 -t $SESSION # horizontal split #tmux split-window -v -p 10 -t $SESSION # bottom right - #tmux send-keys -t $SESSION 'htop' C-m - tmux select-pane -t $SESSION:1.1 # select first pane + #tmux send-keys -t $SESSION 'htop' C-m + #tmux select-pane -t $SESSION:1.1 # select first pane #tmux split-window -v -p 60 -t $SESSION # create a pane below first pane - tmux split-window -v -p 56 -t $SESSION # create a pane below first pane - tmux send-keys -t $SESSION 'htop' C-m # process in third pane - tmux split-window -v -p 75 -t $SESSION # create a pane below second pane + #tmux split-window -v -p 56 -t $SESSION # create a pane below first pane + #tmux send-keys -t $SESSION 'htop' C-m # process in third pane + #tmux split-window -v -p 75 -t $SESSION # create a pane below second pane #tmux send-keys -t $SESSION 'irc.sh' C-m # process in fourth pane #tmux send-keys -t $SESSION 'ncmpcpp' C-m # process in fourth pane - tmux send-keys -t $SESSION 'mpd; vimpc' C-m # process in fourth pane - tmux select-pane -t $SESSION:1.1 # select first pane + #tmux send-keys -t $SESSION 'mpd; vimpc' C-m # process in fourth pane + #tmux select-pane -t $SESSION:1.1 # select first pane fi tmux attach -t $SESSION