From b42df21947bb75ac1e4dd317eb9d7bf0cd20e932 Mon Sep 17 00:00:00 2001 From: AChavali Date: Fri, 3 Jan 2020 00:59:04 +0000 Subject: ~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 --- doom.d/modules/config.org | 2 +- doom.d/modules/personal.org | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'doom.d/modules') diff --git a/doom.d/modules/config.org b/doom.d/modules/config.org index 0428f49..3df750f 100644 --- a/doom.d/modules/config.org +++ b/doom.d/modules/config.org @@ -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 diff --git a/doom.d/modules/personal.org b/doom.d/modules/personal.org index 07d4c15..f36bcec 100644 --- a/doom.d/modules/personal.org +++ b/doom.d/modules/personal.org @@ -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 -- cgit v1.2.3-13-gbd6f