We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 279e46e commit c9fea30Copy full SHA for c9fea30
1 file changed
rusticlone/helpers/custom.py
@@ -76,6 +76,11 @@ def __init__(self, args) -> None:
76
Path.home() / "AppData/Roaming/rustic/config",
77
Path("C:/ProgramData/rustic/config"),
78
]
79
+ elif self.operating_system == "Darwin":
80
+ self.profiles_dirs = [
81
+ Path.home() / "Library/Application Support/rustic",
82
+ Path("/etc/rustic"),
83
+ ]
84
else:
85
self.profiles_dirs = [
86
Path.home() / ".config/rustic",
0 commit comments