aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/contrib (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-02-06keepass2csv2passDavid Francoeur1-0/+62
The CSV is generated by KeePassX 2.0 on Mac OSX
2016-02-06Revert "show: allow passing prefix to clip"Jason A. Donenfeld2-14/+9
This reverts commit fcb92ed69fc191e39379bad715371d8c28410885. Needs more discussion.
2016-02-06Fix zsh completion when path contains \Simon Gomizelj1-1/+1
2016-02-06init: put path in commit messageJason A. Donenfeld1-4/+4
2016-02-06completion: Output a space when appropriate on bash completionAnas Syed1-1/+19
Did this by not passing "-o nospace" to complete. Instead, put "compopt -o nospace" after a COMPREPLY that shouldn't add a space when autocompleting the only match
2016-02-06show: allow passing prefix to clipJason A. Donenfeld2-9/+14
2016-02-06passmenu: group commandsJason A. Donenfeld1-1/+1
2016-02-05passmenu: Use faster built-inJason A. Donenfeld1-1/+1
2016-02-05show: better clip error messageJason A. Donenfeld1-3/+3
2016-02-05show: allow selecting which clip lineJason A. Donenfeld2-9/+10
2016-02-05generate: have a default length of 25Jason A. Donenfeld2-6/+12
Folks are lazy and don't want to type very much, so they'd like to have a default password length to generate that can be configured via environment variables per usual. I'm making the default 25. If the user forbids the use of symbols, pwgen will use a-zA-Z0-9, ensuring that at least one A-Z and at least one 0-9 is used. We want to have a password of at least 128-bits, so factoring in the issue with "at least one of this character type", 25 gets us there squarely. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>