summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-08-03 23:08:12 +0300
committerThanos Apollo <[email protected]>2023-08-03 23:08:12 +0300
commit55b6e99c91b5fc1c766546ab264689c24d2a4977 (patch)
tree175155d8ece65bde6b3572d883deccb4730c85e9
parent37a57bb7c9e4cd00d08a290c32dc9dd1ac380894 (diff)
emacs: set password-generate-length to random 40 char
-rwxr-xr-xemacs.org5
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs.org b/emacs.org
index 5b35ae3..9051629 100755
--- a/emacs.org
+++ b/emacs.org
@@ -202,6 +202,11 @@ Fonts and basic appearance settings for each device
(global-set-key (kbd "C-x r C-r") 'bookmark-rename)
#+end_src
* Pass
+** Setup
+Generate a random password between 20 and 40 characters
+#+begin_src emacs-lisp
+ (setq password-store-password-length (+ 20 (random 20)))
+#+end_src
** Pass Launcher
#+begin_src emacs-lisp
(require 'password-store)