We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fffe7f8 commit a3d236eCopy full SHA for a3d236e
1 file changed
scripts/lpass
@@ -68,8 +68,8 @@ S_WHITE = '\033[37m'
68
S_RESET = '\033[0m'
69
70
LPASS_ENCRYPTION_KEY = '1234567890ABCDEF'
71
-LPASS_CONFIG_FILE = os.path.expanduser("~/.lpass-config")
72
-LPASS_BLOB_FILE = os.path.expanduser("~/.lpass-blob")
+LPASS_CONFIG_FILE = os.getenv('LPASS_CONFIG_FILE', os.path.expanduser("~/.lpass-config"))
+LPASS_BLOB_FILE = os.getenv('LPASS_BLOB_FILE', os.path.expanduser("~/.lpass-blob"))
73
CLIENT_ID = None # Usually the IMEI.
74
75
0 commit comments