Files
dotfiles/.tmux/newpanes
Eragos 9986ff5df2 some tmux changes
- open new pane in current directory
- add info, when config is reloaded
- set terminal title
2016-04-23 14:30:09 +02:00

5 lines
102 B
Bash
Executable File

#!/bin/sh
TMUX_CURRENT_DIR=`pwd`
tmux split-window $1
tmux send-keys "cd $TMUX_CURRENT_DIR;clear" C-m