commit 24c0b2faf5885945a1fa66180d6979653827ec58 Author: frosty Date: Sat Feb 19 17:28:07 2022 -0500 i did a thing diff --git a/README.md b/README.md new file mode 100644 index 0000000..ec024e4 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# gifwp + +figure out what it does yourself i can't be bothered to put instructions here diff --git a/gifwp b/gifwp new file mode 100755 index 0000000..9e5ad75 --- /dev/null +++ b/gifwp @@ -0,0 +1,9 @@ +#!/bin/python3 + +import os +import sys +import time +while True: + for file in os.listdir(sys.argv[1]): + os.system("feh --bg-scale " + sys.argv[1] + "/" + file) + time.sleep(float(sys.argv[2]))