dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 98ac766671e97b4b38b7947d91cf97f9d48d4bfc
parent 7967453c039c2366b070ba884ad0e164bc76cce0
Author: Anders Damsgaard Christensen <adc@geo.au.dk>
Date:   Tue, 14 May 2013 09:55:27 +0200

Added make alias

Diffstat:
M.zshrc | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/.zshrc b/.zshrc @@ -55,6 +55,7 @@ export LD_LIBRARY_PATH=/usr/local/cuda-5.0/lib64:/usr/local/cuda-5.0/lib:$LD_LIB alias l='ls -lh' alias ll='ls -lha' +alias m='make' # speech synth command say() { if [[ "${1}" =~ -[a-z]{2} ]]; then local lang=${1#-}; local text="${*#$1}"; else local lang=${LANG%_*}; local text="$*";fi; mplayer "http://translate.google.com/translate_tts?ie=UTF-8&tl=${lang}&q=${text}" &> /dev/null ; }