diff options
author | AChavali <aryadevchavali1@gmail.com> | 2019-12-30 14:43:18 +0000 |
---|---|---|
committer | AChavali <aryadevchavali1@gmail.com> | 2019-12-30 14:52:18 +0000 |
commit | 52359546dedec7da88132c84939218db746e6cba (patch) | |
tree | 3ee6d09e959b6e6870efa0db88bbd4b838b7bb5f | |
parent | 049a68cde1599827aa2b8d62709bf9e3507130f3 (diff) | |
download | dotfiles-52359546dedec7da88132c84939218db746e6cba.tar.gz dotfiles-52359546dedec7da88132c84939218db746e6cba.tar.bz2 dotfiles-52359546dedec7da88132c84939218db746e6cba.zip |
~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
-rw-r--r-- | doom.d/config.org | 6 |
1 files 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 |