diff --git a/README.md b/README.md index 7abed36e..8d9d3bb2 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,7 @@ Easily view, navigate and search your **command history** with shell history suggest box for Bash and [zsh](CONFIGURATION.md#zsh-history-settings). -[![Shell History Suggest Box](http://me.mindforger.com/projects/images/hh-animated-01.gif "Shell History Suggest Box @ YouTube")](http://www.youtube.com/watch?v=sPF29NyXe2U) - +[![Shell History Suggest Box](doc/hstr-v2.gif "Shell History Suggest Box @ YouTube")](http://www.youtube.com/watch?v=sPF29NyXe2U) ## Description Are you looking for a command that you used **recently**? Do you diff --git a/build/anigif-create.sh b/build/anigif-create.sh new file mode 100755 index 00000000..909ee5a0 --- /dev/null +++ b/build/anigif-create.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +# convert -loop 0 -delay 100 in1.png in2.png out.gif + +export FFF=`ls *.png | while read F +do + echo "${F}" +done` + +# delay: 100 > 75 +export CCC="convert -loop 0 -delay 75 ${FFF} hstr-v2.gif" + +#echo ${CCC}; +${CCC} + +# eof diff --git a/build/anigif-rename.sh b/build/anigif-rename.sh new file mode 100755 index 00000000..f4dff70a --- /dev/null +++ b/build/anigif-rename.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Copyright (C) 2014-2018 Martin Dvorak +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Script which creates raw screenshots to reasonable names to simplify animated gif edits + +export C=1000 +ls *.png | while read F; do C=`expr $C + 1`; cp -vf "$F" "${C}.png"; done + +# eof diff --git a/doc/hstr-v2.gif b/doc/hstr-v2.gif new file mode 100644 index 00000000..35948e2b Binary files /dev/null and b/doc/hstr-v2.gif differ