You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
################################################################################ # catimg script by Eduardo San Martin Morote aka Posva # # https://posva.net # # # # Output 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 }
|