Compare commits

..

No commits in common. "b3659914cd0cb9be82214057d32fa2e9fa44f8df" and "b6f42fbf97472b34133354fec7b399a433b263ef" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -243,8 +243,8 @@ class WallpaperLogic(_ConfigLib):
for changing_time in range(len(self.config_changing_times)): for changing_time in range(len(self.config_changing_times)):
clean_time = self._clean_times(changing_time) clean_time = self._clean_times(changing_time)
scheduler.add_job(self.set_wallpaper_by_time, trigger=CronTrigger(hour=clean_time[0], minute=clean_time[1], second=clean_time[2])) scheduler.add_job(self.set_wallpaper_by_time, trigger=CronTrigger(hour=clean_time[0], minute=clean_time[1], second=clean_time[2]))
logger.info("The blocking scheduler has been started.")
scheduler.start() scheduler.start()
logger.info("The blocking scheduler has been started.")
if self.config_systray: if self.config_systray:
import wallman_systray as systray import wallman_systray as systray

View file

@ -34,7 +34,7 @@ def on_quit(icon, item, callback):
icon.stop() icon.stop()
chdir("/etc/wallman/icons/") chdir("/etc/wallman/icons/systrayIcon")
try: try:
icon_image = Image.open("systrayIcon.jpg") icon_image = Image.open("systrayIcon.jpg")
except FileNotFoundError: except FileNotFoundError: