diff options
author | Thanos Apollo <[email protected]> | 2023-08-03 23:08:12 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-08-03 23:08:12 +0300 |
commit | 55b6e99c91b5fc1c766546ab264689c24d2a4977 (patch) | |
tree | 175155d8ece65bde6b3572d883deccb4730c85e9 | |
parent | 37a57bb7c9e4cd00d08a290c32dc9dd1ac380894 (diff) |
emacs: set password-generate-length to random 40 char
-rwxr-xr-x | emacs.org | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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) |