Commit 349fa15b authored by Eduardo San Martin Morote's avatar Eduardo San Martin Morote
Browse files

Fixed a dirs bug for catimg

parent 0185d992
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
if [[ -x `which convert` ]]; then if [[ -x `which convert` ]]; then
function catimg() { function catimg() {
source $(dirname $0)/catimg.sh $@ source $ZSH/plugins/catimg/catimg.sh $@
} }
else else
echo "catimg need convert (ImageMagick) to work)" echo "catimg need convert (ImageMagick) to work)"
......
...@@ -43,7 +43,7 @@ if [ ! "$WIDTH" ]; then ...@@ -43,7 +43,7 @@ if [ ! "$WIDTH" ]; then
else else
COLS=$(expr $WIDTH "/" $(echo -n "$CHAR" | wc -c)) COLS=$(expr $WIDTH "/" $(echo -n "$CHAR" | wc -c))
fi fi
WIDTH=$(convert ${IMG} -print "%w\n" /dev/null) WIDTH=$(convert "$IMG" -print "%w\n" /dev/null)
if [ "$WIDTH" -gt "$COLS" ]; then if [ "$WIDTH" -gt "$COLS" ]; then
WIDTH=$COLS WIDTH=$COLS
fi fi
...@@ -58,6 +58,7 @@ else ...@@ -58,6 +58,7 @@ else
fi fi
# Display the image # Display the image
I=0
convert "$IMG" -resize $COLS\> +dither `echo $REMAP` txt:- | convert "$IMG" -resize $COLS\> +dither `echo $REMAP` txt:- |
sed -e 's/.*none.*/NO NO NO/g' -e '1d;s/^.*(\(.*\)[,)].*$/\1/g;y/,/ /' | sed -e 's/.*none.*/NO NO NO/g' -e '1d;s/^.*(\(.*\)[,)].*$/\1/g;y/,/ /' |
while read R G B f; do while read R G B f; do
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment