From 52359546dedec7da88132c84939218db746e6cba Mon Sep 17 00:00:00 2001 From: AChavali Date: Mon, 30 Dec 2019 14:43:18 +0000 Subject: ~use password-store instead of shell for Wakatime Wakatime key is stored in the password store, use the password module instead of a shell command to get the key --- doom.d/config.org | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doom.d/config.org b/doom.d/config.org index b133af9..a147bc8 100644 --- a/doom.d/config.org +++ b/doom.d/config.org @@ -154,11 +154,9 @@ A keybind and a routine ** Wakatime #+BEGIN_SRC elisp -(use-package! wakatime-mode - :after-call pre-command-hook - :config +(after! wakatime-mode (setq wakatime-cli-path (expand-file-name "~/.local/bin/wakatime")) - (setq wakatime-api-key (replace-regexp-in-string "\n" "" (shell-command-to-string "pass Keys/Wakatime"))) + (setq wakatime-api-key (password-store-get "Keys/Wakatime")) (global-wakatime-mode +1)) #+END_SRC Using new password holder (pass) to help with secure transactions. Doing all -- cgit v1.2.3-13-gbd6f