diff --git a/waypaper/app.py b/waypaper/app.py index bcd921d..81b8b8e 100644 --- a/waypaper/app.py +++ b/waypaper/app.py @@ -200,7 +200,7 @@ class App(Gtk.Window): # Check available monitors: monitor_names = ["All"] try: - subprocess.Popen(["swww", "init"]) + subprocess.Popen(["swww-daemon"]) query_output = str(subprocess.check_output(["swww", "query"], encoding='utf-8')) monitors = query_output.split("\n") for monitor in monitors[:-1]: diff --git a/waypaper/changer.py b/waypaper/changer.py index ae68ca3..2fa2d67 100644 --- a/waypaper/changer.py +++ b/waypaper/changer.py @@ -42,7 +42,7 @@ def change_wallpaper(image_path, cf, monitor, txt): time.sleep(0.005) except Exception as e: print(f"{txt.err_kill} {e}") - subprocess.Popen(["swww", "init"]) + subprocess.Popen(["swww-daemon"]) command = ["swww", "img", image_path] command.extend(["--resize", fill]) command.extend(["--fill-color", cf.color])