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 0d7d3a6d6a4c1545e86d08621724fa58e09d03fe
parent 98ac766671e97b4b38b7947d91cf97f9d48d4bfc
Author: Anders Damsgaard Christensen <adc@geo.au.dk>
Date:   Tue, 14 May 2013 16:36:27 +0200

Added make clean alias

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

diff --git a/.zshrc b/.zshrc @@ -56,6 +56,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' +alias mc='make clean' # 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 ; }