aboutsummaryrefslogtreecommitdiff
path: root/doom.d/modules
diff options
context:
space:
mode:
Diffstat (limited to 'doom.d/modules')
-rw-r--r--doom.d/modules/config.org2
-rw-r--r--doom.d/modules/personal.org2
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