Sign up for a GitHub account Sign in All Gists public colby / gist:143f1ba16ff8bc867b9e Created July 17, 2014 Code Revisions 1 /.sunken-menu-group /.sunken-menu-contents Embed HTTPS SSH You can clone with HTTPS or SSH . Download Gist /.only-with-full-nav SSH with config.d support View gist:143f1ba16ff8bc867b9e gistfile1.sh Raw File suppressed. Click to show. 1 2 3 4 5 6 7 8 9 10 11 12 13 function create_new_ssh_config () { cat ~/.ssh/config.d/* > ~/.ssh/config } function ssh () { create_new_ssh_config if [ -n "$TMUX" ] ; then trap 'tmux set-window-option automatic-rename on > /dev/null' 2 tmux rename-window ssh: "$1" fi $( which ssh ) "$*" tmux setw automatic-rename on > /dev/null } Sign up for free to join this conve...