my xfce4 dotfiles
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.

17 lines
816 B

3 years ago
  1. ################################################################################
  2. # catimg script by Eduardo San Martin Morote aka Posva #
  3. # https://posva.net #
  4. # #
  5. # Output the content of an image to the stdout using the 256 colors of the #
  6. # terminal. #
  7. # GitHub: https://github.com/posva/catimg #
  8. ################################################################################
  9. function catimg() {
  10. if [[ -x `which convert` ]]; then
  11. zsh $ZSH/plugins/catimg/catimg.sh $@
  12. else
  13. echo "catimg need convert (ImageMagick) to work)"
  14. fi
  15. }