修改tmux背景色
时间:2021-07-05 17:23:38
收藏:0
阅读:0
https://www.it1352.com/1873377.html
#!/bin/sh if [ -n "$TMUX" ]; then case "$1" in prod_*) tmux selectp -P bg=red ;; esac fi ssh "$@" tmux selectp -P default
评论(0)