From 19b925e741fa46d2222210469a4dffc34a634ebd Mon Sep 17 00:00:00 2001 From: Janosch Schwalm Date: Tue, 7 Aug 2018 20:42:02 +0200 Subject: use https everywhere (#6574) * use https everywhere * use https links on the files that are left Also, removed some broken links and updated redirections. --- plugins/catimg/catimg.plugin.zsh | 2 +- plugins/catimg/catimg.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/catimg') diff --git a/plugins/catimg/catimg.plugin.zsh b/plugins/catimg/catimg.plugin.zsh index cb92f5986..5f58ecde3 100644 --- a/plugins/catimg/catimg.plugin.zsh +++ b/plugins/catimg/catimg.plugin.zsh @@ -1,6 +1,6 @@ ################################################################################ # catimg script by Eduardo San Martin Morote aka Posva # -# http://posva.net # +# https://posva.net # # # # Ouput the content of an image to the stdout using the 256 colors of the # # terminal. # diff --git a/plugins/catimg/catimg.sh b/plugins/catimg/catimg.sh index cd0f2e333..83ccf6a95 100755 --- a/plugins/catimg/catimg.sh +++ b/plugins/catimg/catimg.sh @@ -1,6 +1,6 @@ ################################################################################ # catimg script by Eduardo San Martin Morote aka Posva # -# http://posva.net # +# https://posva.net # # # # Ouput the content of an image to the stdout using the 256 colors of the # # terminal. # -- cgit v1.2.3-70-g09d2 From 4d940109e3c2a81ca44df1dd6e807b7a5538fff8 Mon Sep 17 00:00:00 2001 From: Marc Cornellà Date: Sat, 15 Sep 2018 23:57:12 +0200 Subject: misc: remove execution permission from various files --- plugins/bgnotify/bgnotify.plugin.zsh | 0 plugins/catimg/catimg.sh | 0 plugins/dnf/README.md | 0 plugins/git-flow-avh/git-flow-avh.plugin.zsh | 0 plugins/n98-magerun/n98-magerun.plugin.zsh | 0 plugins/scd/scd | 0 plugins/wd/wd.sh | 0 plugins/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh | 0 themes/trapd00r.zsh-theme | 0 9 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 plugins/bgnotify/bgnotify.plugin.zsh mode change 100755 => 100644 plugins/catimg/catimg.sh mode change 100755 => 100644 plugins/dnf/README.md mode change 100755 => 100644 plugins/git-flow-avh/git-flow-avh.plugin.zsh mode change 100755 => 100644 plugins/n98-magerun/n98-magerun.plugin.zsh mode change 100755 => 100644 plugins/scd/scd mode change 100755 => 100644 plugins/wd/wd.sh mode change 100755 => 100644 plugins/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh mode change 100755 => 100644 themes/trapd00r.zsh-theme (limited to 'plugins/catimg') diff --git a/plugins/bgnotify/bgnotify.plugin.zsh b/plugins/bgnotify/bgnotify.plugin.zsh old mode 100755 new mode 100644 diff --git a/plugins/catimg/catimg.sh b/plugins/catimg/catimg.sh old mode 100755 new mode 100644 diff --git a/plugins/dnf/README.md b/plugins/dnf/README.md old mode 100755 new mode 100644 diff --git a/plugins/git-flow-avh/git-flow-avh.plugin.zsh b/plugins/git-flow-avh/git-flow-avh.plugin.zsh old mode 100755 new mode 100644 diff --git a/plugins/n98-magerun/n98-magerun.plugin.zsh b/plugins/n98-magerun/n98-magerun.plugin.zsh old mode 100755 new mode 100644 diff --git a/plugins/scd/scd b/plugins/scd/scd old mode 100755 new mode 100644 diff --git a/plugins/wd/wd.sh b/plugins/wd/wd.sh old mode 100755 new mode 100644 diff --git a/plugins/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh b/plugins/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh old mode 100755 new mode 100644 diff --git a/themes/trapd00r.zsh-theme b/themes/trapd00r.zsh-theme old mode 100755 new mode 100644 -- cgit v1.2.3-70-g09d2 From 43e5c9093a303acaac861c723b4de1914adcf99f Mon Sep 17 00:00:00 2001 From: Griko Nibras Date: Fri, 5 Oct 2018 14:43:45 +0700 Subject: catimg: add README (#7232) --- plugins/catimg/README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 plugins/catimg/README.md (limited to 'plugins/catimg') diff --git a/plugins/catimg/README.md b/plugins/catimg/README.md new file mode 100644 index 000000000..2fc28a1c6 --- /dev/null +++ b/plugins/catimg/README.md @@ -0,0 +1,35 @@ +# catimg + +Plugin for displaying images on the terminal using the the `catimg.sh` script provided by [posva](https://github.com/posva/catimg) + +## Requirements + +- `convert` (ImageMagick) + +## Enabling the plugin + +1. Open your `.zshrc` file and add `catimg` in the plugins section: + + ```zsh + plugins=( + # all your enabled plugins + catimg + ) + ``` + +2. Reload the source file or restart your Terminal session: + + ```console + $ source ~/.zshrc + $ + ``` + +## Functions + +| Function | Description | +| -------- | ---------------------------------------- | +| `catimg` | Displays the given image on the terminal | + +## Usage examples + +[![asciicast](https://asciinema.org/a/204702.png)](https://asciinema.org/a/204702) -- cgit v1.2.3-70-g09d2