mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-19 22:59:50 +00:00
catimg plugin
allow to print an image to the stdout using convert
This commit is contained in:
16
plugins/catimg/catimg.plugin.zsh
Normal file
16
plugins/catimg/catimg.plugin.zsh
Normal file
@@ -0,0 +1,16 @@
|
||||
################################################################################
|
||||
# catimg script by Eduardo San Martin Morote aka Posva #
|
||||
# http://posva.net #
|
||||
# #
|
||||
# Ouput the content of an image to the stdout using the 256 colors of the #
|
||||
# terminal. #
|
||||
# Github: https://github.com/posva/catimg #
|
||||
################################################################################
|
||||
|
||||
if [[ -x `which convert` ]]; then
|
||||
function catimg() {
|
||||
source $(dirname $0)/catimg.sh $@
|
||||
}
|
||||
else
|
||||
echo "catimg need convert (ImageMagick) to work)"
|
||||
fi
|
||||
Reference in New Issue
Block a user