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 dc2157fbb8749eebbd4ab54d36805b98214fed24
parent 00c08f2186ad13318f2e1d6ab126b223b3c29175
Author: Anders Damsgaard Christensen <adc@geo.au.dk>
Date:   Sun, 12 May 2013 11:24:47 +0200

Changed ls -lha alias to l

Diffstat:
M.zshrc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.zshrc b/.zshrc @@ -53,7 +53,7 @@ export PATH=~/code/elmerfem/fem/src:$PATH export PATH=/usr/local/cuda-5.0/bin:$PATH export LD_LIBRARY_PATH=/usr/local/cuda-5.0/lib64:/usr/local/cuda-5.0/lib:$LD_LIBRARY_PATH -alias ll='ls -lh' +alias l='ls -lh' # 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 ; }