summaryrefslogtreecommitdiff
path: root/home/tmux/tmux_window
blob: 1cdacf01bb8aaa6015caf1b0fa00753bbc4cf161 (plain)
1
2
3
4
5
6
7
#!/bin/sh

if tmux list-windows | grep -q "^$1:"; then
        tmux select-window -t "$1"
else
        tmux new-window -t "$1"
fi