From ab21831ddece8f0e381337f768a93867cc16e8ee Mon Sep 17 00:00:00 2001 From: TheWired Date: Tue, 22 Oct 2024 13:06:05 -0400 Subject: [PATCH] Fixed Issue with CMD Support for Multi-Monitor using state files. --- waypaper/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/waypaper/config.py b/waypaper/config.py index c09851f..a390b16 100644 --- a/waypaper/config.py +++ b/waypaper/config.py @@ -123,6 +123,7 @@ class Config: self.image_folder = pathlib.Path(image_folder_str).expanduser() if monitors_str: self.monitors = [str(monitor) for monitor in monitors_str.split(",")] + self.selected_monitor = self.monitors[0] if wallpapers_str: self.wallpapers = [pathlib.Path(paper).expanduser() for paper in wallpapers_str.split(",")]