~password-store-get -> password-store/get-password

Use my own function instead of theirs, I like the GUI for pass more than
the text version
This commit is contained in:
AChavali
2020-01-03 00:59:04 +00:00
parent d119ea2d8d
commit b42df21947
2 changed files with 2 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ A keybind and a routine
:defer 1
:config
(setq wakatime-cli-path (expand-file-name "~/.local/bin/wakatime"))
(setq wakatime-api-key (password-store-get "Keys/Wakatime"))
(setq wakatime-api-key (replace-regexp-in-string "\n" "" (oreodave/password-store/get-password "Keys/Wakatime")))
(global-wakatime-mode +1))
#+END_SRC
Using new password holder (pass) to help with secure transactions. Doing all

View File

@@ -77,7 +77,7 @@ Function to get a password given a key.
(defun oreodave/weather ()
"Check the weather at the 'location' stored in password store"
(interactive)
(wttrin (password-store-get "location")))
(wttrin (oreodave/password-store/get-password "location")))
#+END_SRC
Function to quickly check weather, which is what I wanted wttrin for.
* Oreomode