README 979 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. == Installing ==
  2. Pwman3 requires the following debian packages:
  3. when using python 2.4
  4. python-pysqlite2
  5. python-celementtree
  6. python-crypto
  7. when using python >= 2.5
  8. python-crypto
  9. for nicer functionality:
  10. xsel - to copy password to clipboard on Linux
  11. To install:
  12. $ python setup.py install
  13. == ikegam's function ==
  14. * making a password from the numeric character and the alphabet character ([A-Za-z0-9]).
  15. You can add a parametor for making the password to the config(~/.pwman/config).
  16. For Example)
  17. [Generator]
  18. numerics = true
  19. * Passwords can be l33tified similarly using the following.
  20. [Generator]
  21. leetify = true
  22. * Copying password to X11 clipbord:
  23. Specify the path to `xsel` if you already have `~/.pwman/config`
  24. [Global]
  25. xsel = yes
  26. xselpath = /usr/bin/xsel
  27. When launching `pwman` for the first time, it will try and look for
  28. `xsel` and write the configuration properly.