diff options
Diffstat (limited to 'home/.oh-my-zsh/plugins/catimg/catimg.plugin.zsh')
| -rw-r--r-- | home/.oh-my-zsh/plugins/catimg/catimg.plugin.zsh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/home/.oh-my-zsh/plugins/catimg/catimg.plugin.zsh b/home/.oh-my-zsh/plugins/catimg/catimg.plugin.zsh new file mode 100644 index 0000000..ad10d85 --- /dev/null +++ b/home/.oh-my-zsh/plugins/catimg/catimg.plugin.zsh @@ -0,0 +1,19 @@ +################################################################################ +# 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 (( $+commands[magick] )); then + CONVERT_CMD="magick" zsh $ZSH/plugins/catimg/catimg.sh $@ + elif (( $+commands[convert] )); then + CONVERT_CMD="convert" zsh $ZSH/plugins/catimg/catimg.sh $@ + else + echo "catimg need magick/convert (ImageMagick) to work)" + fi +} |
