summaryrefslogtreecommitdiff
path: root/plugins/catimg/catimg.plugin.zsh
blob: 5f58ecde399496eefd957fefdf42038a1298830f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
################################################################################
# catimg script by Eduardo San Martin Morote aka Posva                         #
# https://posva.net                                                            #
#                                                                              #
# Ouput the content of an image to the stdout using the 256 colors of the      #
# terminal.                                                                    #
# Github: https://github.com/posva/catimg                                      #
################################################################################


function catimg() {
  if [[ -x  `which convert` ]]; then
    zsh $ZSH/plugins/catimg/catimg.sh $@
  else
    echo "catimg need convert (ImageMagick) to work)"
  fi
}