forked from dreknix/tmux-primary-ip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmux-primary-ip.tmux
More file actions
executable file
·36 lines (29 loc) · 857 Bytes
/
tmux-primary-ip.tmux
File metadata and controls
executable file
·36 lines (29 loc) · 857 Bytes
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
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "${CURRENT_DIR}/scripts/helpers.sh"
primary_ip_interpolations=(
"\#{primary_ip}"
"\#{primary_ip_icon}"
)
primary_ip_commands=(
"#($CURRENT_DIR/scripts/primary_ip.sh)"
"#($CURRENT_DIR/scripts/primary_ip_icon.sh)"
)
do_interpolation() {
local all_interpolated="$1"
for ((i=0; i<${#primary_ip_commands[@]}; i++)); do
all_interpolated=${all_interpolated//${primary_ip_interpolations[$i]}/${primary_ip_commands[$i]}}
done
echo "$all_interpolated"
}
update_tmux_option() {
local option="$1"
local option_value="$(get_tmux_option "$option")"
local new_option_value="$(do_interpolation "$option_value")"
set_tmux_option "$option" "$new_option_value"
}
main() {
update_tmux_option "status-right"
update_tmux_option "status-left"
}
main