From the console I use:
CODE
du -sh `ls`
for example, if I was in /home/username at the time, I would see the total size for Documents, Downloads, Music, etc, etc. The -sh for du command gives summary and human readable format of directory sizes from the directory listing provided by the command ls. The single angled quote is important.