From 5a2b2e7a8564d7aea67810e290ff112a1a57ab83 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sun, 16 Jul 2023 19:53:31 +0100 Subject: [PATCH] add autopape.sh --- autopape.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 autopape.sh diff --git a/autopape.sh b/autopape.sh new file mode 100755 index 0000000..3cf6980 --- /dev/null +++ b/autopape.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# simple script to loop through each image in a directory and set said image as wallpaper for 1 minute + +while [ true ] +do + for img in * + do + feh --bg-fill "$img" + sleep 1m + done +done