Artificial intelligent assistant

In tmux how to set pane specific variable to display in the pane status bar for that pane only In tmux, how do I create a function that will set a variable that will then be available to use within tmux pane border status: set -g pane-border-format so I can then run that function and have the value set but only for that pane and nowhere else so that the border status displays something different for that pane and if I run that function in another pane, the pane border status will display something else but only for the pane that the function was runin so if I run the function in `pane 1` to say `'hello world'` then in `pane 2` to say `'goodby world'` I expect `pane 1` `border status` to say `'hello world'` and `pane 2` `border status` to say `'goodby world'`.

I found out how to set user options, so I created a function to automate this:


if [ -n "$TMUX" ]; then

function set_tmux_opt {
tmux set -q "@$1_$TMUX_PANE" "$2"
}

fi


and it's used like this:


set_tmux_opt 'some_variable' '1'


and I get it like this:


function get_tmux_opt {
tmux show -v "@$1_$2"
}


and used like this:


$pane_id="$1
get_tmux_opt 'some_variable' $pane_id


and then passed into the script using `pane_id`

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy 7565e39774731b3e9c018756994359db