Starting Your Terminal with tmux

I am getting more comfortable with tmux and I want to make sure I don't forget to use it when I'm at the command prompt. So, I made a simple Bash script to automatically connect to an existing session or start a new session when I start my terminal:

tmux-start.sh:

#!/bin/bash
tmux ls > /dev/null ; [ $? == 0 ] && tmux attach || tmux