Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kilavila/.vilath
CLI based password manager using GnuPG
https://github.com/kilavila/.vilath
command-line-tool encryption-decryption gnupg password-generator password-manager password-safety password-store
Last synced: about 1 month ago
JSON representation
CLI based password manager using GnuPG
- Host: GitHub
- URL: https://github.com/kilavila/.vilath
- Owner: kilavila
- License: mit
- Created: 2024-06-22T01:43:43.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-16T16:36:18.000Z (5 months ago)
- Last Synced: 2024-08-16T18:09:48.977Z (5 months ago)
- Topics: command-line-tool, encryption-decryption, gnupg, password-generator, password-manager, password-safety, password-store
- Language: Shell
- Homepage: https://vilath.vercel.app
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vilath - Password manager
CLI password manager to organize and keep your passwords safe.
Uses GnuPG for encryption and generates strong, 32-character length passwords.---
### Update
> Added dmenu for quick copying passwords.Download and install dmenu: https://tools.suckless.org/dmenu/
```
$ vilath menu
```---
### Getting started
Clone this directory and move script into bin, set up GnuPG RSA private and public keys, then initialize the password store.
```
$ cd ~
$ git clone https://github.com/kilavila/.vilath.git
$ sudo cp ~/.vilath/.bin/vilath /usr/bin/vilath
$ gpg --full-generate-key
$ vilath init [email protected]
```### Usage
Generate, list, view and edit password store.```sh
$ vilath generate web/mail
$ vilath list
# view hides password by default
# use -a to view entire password file
# or -c to copy password to clipboard
# f.ex: vilath view web/mail -a
$ vilath view web/mail
$ vilath edit web/mail
```### Help
To view more examples and flags etc.```
$ vilath --help
```