diff --git a/src/wallman_lib.py b/src/wallman_lib.py index 81d4d15..0a44aac 100644 --- a/src/wallman_lib.py +++ b/src/wallman_lib.py @@ -75,7 +75,7 @@ class _ConfigLib: logger.error("There is no wallpaper behavior specified in general, defaulting to fill...") print("ERROR: There is no wallpaper behavior specified in general, defaulting to fill...") - human_behaviors: List[str] = ["pure", "tile", "center", "fill", "max", "scale"] + human_behaviors: List[str] = ["plain", "tile", "center", "fill", "max", "scale"] machine_behaviors: List[str] = ["--bg", "--bg-tile", "--bg-center", "--bg-fill", "--bg-max", "--bg-scale"] behavior: str = self.config_general.get("behavior", "--bg-fill").lower() if behavior not in human_behaviors and behavior not in machine_behaviors: @@ -84,7 +84,7 @@ class _ConfigLib: if behavior not in machine_behaviors: match behavior: - case "pure": + case "plain": behavior = "--bg" case "tile": behavior = "--bg-tile"