2022-06-18 23:49:00 +05:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
from func import *
|
|
|
|
|
2022-06-20 09:22:02 +05:00
|
|
|
def start():
|
|
|
|
try:
|
|
|
|
kill()
|
|
|
|
except FileNotFoundError:
|
2022-06-22 17:39:22 +05:00
|
|
|
setWallPeper()
|
|
|
|
|
2022-06-18 23:49:00 +05:00
|
|
|
setWallPeper()
|
2022-06-20 09:22:02 +05:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2022-06-25 16:55:17 +05:00
|
|
|
start()
|
|
|
|
|
2022-06-22 17:39:22 +05:00
|
|
|
sched = BlockingScheduler()
|
|
|
|
sched.add_job(start,'interval',minutes=1)
|
|
|
|
sched.start()
|