diff --git a/rusticlone/helpers/custom.py b/rusticlone/helpers/custom.py index 3e5f3c3..29e8773 100644 --- a/rusticlone/helpers/custom.py +++ b/rusticlone/helpers/custom.py @@ -76,6 +76,11 @@ def __init__(self, args) -> None: Path.home() / "AppData/Roaming/rustic/config", Path("C:/ProgramData/rustic/config"), ] + elif self.operating_system == "Darwin": + self.profiles_dirs = [ + Path.home() / "Library/Application Support/rustic", + Path("/etc/rustic"), + ] else: self.profiles_dirs = [ Path.home() / ".config/rustic",