summaryrefslogblamecommitdiffstats
path: root/bashrc/bin/t
blob: e7c73ccfb3b4c08a17e1c4937f77991c2e527ab7 (plain) (tree)
1
2
                   
 
















                                                                                                
                          
                                  
         
                                        

         



                                                     

                                                 
            
                                              
          

  
                 
#!/usr/bin/env bash

real_tmux() {
    if [ -f "${HOME}/.dotfiles/tmux/tmux.conf" ]; then
        \tmux -f "${HOME}/.dotfiles/tmux/tmux.conf" -S "${HOME}/.dotfiles/tmux/socket" "$@"
    else
        \tmux "$@"
    fi
}

exec_real_tmux() {
    if [ -f "${HOME}/.dotfiles/tmux/tmux.conf" ]; then
        exec \tmux -f "${HOME}/.dotfiles/tmux/tmux.conf" -S "${HOME}/.dotfiles/tmux/socket" "$@"
    else
        exec \tmux "$@"
    fi
}


if [[ "x$1" == x ]] ; then
	real_tmux list-sessions ||
	{
		real_tmux new-session -d
	}

	exec_real_tmux attach-session -d
fi

if [ -z "$2" -a "$1" != "att" -a "$1" != "ls" ]; then
	if real_tmux has-session -t "$1"; then
	    exec_real_tmux attach-session -t "$1"
	else
	    exec_real_tmux new-session -s "$1"
	fi
fi

exec_real_tmux $@