diff options
author | AChavali <aryadevchavali1@gmail.com> | 2020-01-03 00:59:04 +0000 |
---|---|---|
committer | AChavali <aryadevchavali1@gmail.com> | 2020-01-03 00:59:04 +0000 |
commit | b42df21947bb75ac1e4dd317eb9d7bf0cd20e932 (patch) | |
tree | 654df1df9d36833d0757cfe844beb64ad6468c61 /doom.d/modules | |
parent | d119ea2d8d4b7495e334f09352d1711c5a8a515f (diff) | |
download | dotfiles-b42df21947bb75ac1e4dd317eb9d7bf0cd20e932.tar.gz dotfiles-b42df21947bb75ac1e4dd317eb9d7bf0cd20e932.tar.bz2 dotfiles-b42df21947bb75ac1e4dd317eb9d7bf0cd20e932.zip |
~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
Diffstat (limited to 'doom.d/modules')
-rw-r--r-- | doom.d/modules/config.org | 2 | ||||
-rw-r--r-- | doom.d/modules/personal.org | 2 |
2 files changed, 2 insertions, 2 deletions
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 |