We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2588608 commit f8441dcCopy full SHA for f8441dc
src/onepassword/desktop_core.py
@@ -23,6 +23,13 @@ def find_1password_lib_path():
23
"/opt/1Password/libop_sdk_ipc_client.so",
24
"/snap/bin/1password/libop_sdk_ipc_client.so",
25
]
26
+ elif os_name == "Windows":
27
+ locations = [
28
+ str(Path.home() / r"AppData\Local\1Password\op_sdk_ipc_client.dll"),
29
+ r"C:\Program Files\1Password\app\8\op_sdk_ipc_client.dll",
30
+ r"C:\Program Files (x86)\1Password\app\8\op_sdk_ipc_client.dll",
31
+ str(Path.home() / r"AppData\Local\1Password\app\8\op_sdk_ipc_client.dll"),
32
+ ]
33
else:
34
raise OSError(f"Unsupported operating system: {os_name}")
35
0 commit comments