diff options
author | AChavali <aryadevchavali1@gmail.com> | 2020-01-03 00:57:47 +0000 |
---|---|---|
committer | AChavali <aryadevchavali1@gmail.com> | 2020-01-03 00:57:47 +0000 |
commit | d119ea2d8d4b7495e334f09352d1711c5a8a515f (patch) | |
tree | 152e937328b2c964397cc0b1c96fc985aeba40d5 | |
parent | 0b098257a3337a27c0e0bab710af6f783c7f0915 (diff) | |
download | dotfiles-d119ea2d8d4b7495e334f09352d1711c5a8a515f.tar.gz dotfiles-d119ea2d8d4b7495e334f09352d1711c5a8a515f.tar.bz2 dotfiles-d119ea2d8d4b7495e334f09352d1711c5a8a515f.zip |
+function to do password-store myself
-rw-r--r-- | doom.d/modules/personal.org | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doom.d/modules/personal.org b/doom.d/modules/personal.org index 2726a44..07d4c15 100644 --- a/doom.d/modules/personal.org +++ b/doom.d/modules/personal.org @@ -66,6 +66,12 @@ Allow user to set a theme from a limited set of candidates, based on (dired (expand-file-name "~/School"))) #+END_SRC Going to the school directory, quick access to school work. +* Password store +Function to get a password given a key. +#+BEGIN_SRC elisp +(defun oreodave/password-store/get-password (KEY) + (shell-command-to-string (concat "pass " KEY))) +#+END_SRC * Weather #+BEGIN_SRC elisp (defun oreodave/weather () |