Como trabalhei em torno disso:
Eu criei um script start-tmux.sh
, que contém o seguinte:
#!/bin/bash
# if not inside tmux, then start it.
if [ -z "$TMUX" ]; then
tmux attach || exec tmux new-session
else
echo "already in tmux!"
fi
E eu executo o comando st start-tmux.sh
ao acessar Super + t