blob: f21f8335446713a32814c84b8e8466e667ed40b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
export TMUX_PANE_DIRECTION="bottom"
if [ "$TMUX_PANE_DIRECTION" = "bottom" ]; then
tmux select-pane -U
elif [ "$TMUX_PANE_DIRECTION" = "right" ]; then
tmux select-pane -L
fi
tmux resize-pane -Z
|