i did a thing

This commit is contained in:
frosty 2022-02-19 17:28:07 -05:00
commit 24c0b2faf5
2 changed files with 12 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# gifwp
figure out what it does yourself i can't be bothered to put instructions here

9
gifwp Executable file
View File

@ -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]))