blob: bef84c6d9ea7889467417501ad5432bad68ff8cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#
# Worktemux: tmux session wrapper
# https://robots.thoughtbot.com/a-tmux-crash-course
#
# Alternatives:
# https://github.com/tmuxinator/tmuxinator
# https://github.com/tony/tmuxp
# https://github.com/tmux-plugins/tpm
# https://github.com/tmux-plugins/tmux-resurrect
# https://github.com/tmux-plugins/tmux-continuum
# https://superuser.com/questions/440015/restore-tmux-session-after-reboot
# Default options.
opts=""
# Session selection.
if [ ! -z "$1" ]; then
if ! tmux list-sessions 2> /dev/null | grep -q "^$1:"; then
session="new-session -d -s $1"
if [ "$1" = "root" ]; then
sudo tmux attach
exit
elif [ -f "$HOME/.tmux/$1" ]; then
opts="$HOME/.tmux/$1"
elif [ -f "$HOME/.tmux/base" ]; then
opts="$HOME/.tmux/base"
else
opts=""
fi
# Start session.
if [ ! -z "$opts" ]; then
tmux $session \; source-file $opts
else
tmux $session
fi
fi
tmux attach -t $1
else
tmux
fi
|