~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
This commit is contained in:
@@ -79,7 +79,7 @@ A keybind and a routine
|
|||||||
:defer 1
|
:defer 1
|
||||||
:config
|
:config
|
||||||
(setq wakatime-cli-path (expand-file-name "~/.local/bin/wakatime"))
|
(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))
|
(global-wakatime-mode +1))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
Using new password holder (pass) to help with secure transactions. Doing all
|
Using new password holder (pass) to help with secure transactions. Doing all
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ Function to get a password given a key.
|
|||||||
(defun oreodave/weather ()
|
(defun oreodave/weather ()
|
||||||
"Check the weather at the 'location' stored in password store"
|
"Check the weather at the 'location' stored in password store"
|
||||||
(interactive)
|
(interactive)
|
||||||
(wttrin (password-store-get "location")))
|
(wttrin (oreodave/password-store/get-password "location")))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
Function to quickly check weather, which is what I wanted wttrin for.
|
Function to quickly check weather, which is what I wanted wttrin for.
|
||||||
* Oreomode
|
* Oreomode
|
||||||
|
|||||||
Reference in New Issue
Block a user