README 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 or Mac clipbord:
  23. - On Mac OSX systems copying utilizes `pbcopy`
  24. - On X11 Systems Specify the path to `xsel` if you already have `~/.pwman/config`
  25. [Global]
  26. xsel = yes
  27. xselpath = /usr/bin/xsel
  28. When launching `pwman` for the first time, it will try and look for
  29. `xsel` and write the configuration properly.