scripts

shell scripts
git clone git://git.bitsmanent.org/scripts
Log | Files | Refs | README

commit e37d2e34a914b3b72a90d4e207466758c1fbb2df
parent 7ce27f7d37f13956f882c0197dca215047abc45b
Author: Claudio Alessi <smoppy@gmail.com>
Date:   Thu, 24 May 2018 19:38:26 +0200

[fetchpic][doc] Write to tmp file before apply the image.

Diffstat:
MREADME.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -294,8 +294,8 @@ the pic URL and blog name into `/tmp/fetchpic`. while : ; do scrap="$(APIKEY=Your-Api-Key fetchpic)" uri="$(echo "$scrap" |cut -d' ' -f2)" - feh --bg-fill --no-fehbg "$uri" echo "$scrap" >> /tmp/fetchpic + feh --bg-fill --no-fehbg "$uri" sleep 300 done & ```