WallPyPer/main.py

19 lines
299 B
Python
Raw Normal View History

2022-06-18 18:49:00 +00:00
#!/usr/bin/python3
from func import *
def start():
try:
kill()
except FileNotFoundError:
setWallPeper()
2022-06-18 18:49:00 +00:00
setWallPeper()
if __name__ == '__main__':
start()
sched = BlockingScheduler()
sched.add_job(start,'interval',minutes=1)
sched.start()