pwsh-vault/README.md
2024-05-01 10:56:32 +02:00

103 lines
2.4 KiB
Markdown

pwsh-vault - Basic Password Manager written in Bash+Dmenu
=========================================================
### Dependencies:
* **Arch Linux:**
```shell
$ sudo pacman -S git gcc make coreutils sed expat zip unzip dialog freetype2 libxinerama \
brotli fontconfig libbsd libmd libpng libx11 libxau libxdmcp libxft libxrender
````
* **Debian/Ubuntu:**
```shell
$ sudo apt install git gcc make coreutils sed zip unzip dialog libexpat1-dev libmd-dev \
libfreetype-dev libxinerama-dev x11-utils libxft-dev libfreetype6-dev libxau-dev \
libfontconfig1-dev libpng-dev libbrotli-dev libxrender-dev libbsd-dev libxdmcp-dev
````
* **Windows Cygwin ([apt-cyg](https://github.com/transcode-open/apt-cyg)):**
```shell
$ apt-cyg install git make coreutils sed zip unzip dialog
````
* **Android ([Termux](https://termux.com/)):**
```shell
$ pkg install git make coreutils sed zip unzip dialog
````
### Build and install (Unix/Linux Posix):
* Open terminal and run the following commands:
```shell
$ git clone https://git.q3aql.dev/q3aql/pwsh-vault.git
$ cd pwsh-vault
$ sudo make install clean
````
### Download & install (Windows Cygwin):
* Open terminal and run the following commands:
```shell
$ git clone https://git.q3aql.dev/q3aql/pwsh-vault.git
$ cd pwsh-vault
$ make cygwin
````
### Download & install (Android Termux):
* Open terminal and run the following commands:
```shell
$ git clone https://git.q3aql.dev/q3aql/pwsh-vault.git
$ cd pwsh-vault
$ make termux
````
### GUI Version (only for Linux):
```shell
pwsh-vault
```
<img src="https://git.q3aql.dev/q3aql/pwsh-vault/raw/branch/master/examples/pwsh-vault.png" />
### NCURSES Version:
```shell
pwsh-vault-dl
```
<img src="https://git.q3aql.dev/q3aql/pwsh-vault/raw/branch/master/examples/pwsh-vault-dl.png" />
### CLI Version:
```shell
pwsh-vault-cli
```
<img src="https://git.q3aql.dev/q3aql/pwsh-vault/raw/branch/master/examples/pwsh-vault-cli.png" />
```shell
pwsh-vault (or pwsh-vault-cli/dl) --help
```
<img src="https://git.q3aql.dev/q3aql/pwsh-vault/raw/branch/master/examples/pwsh-vault-help.png" />
### External links:
* [dmenu homepage](https://tools.suckless.org/dmenu/)
* [dialog homepage](https://invisible-island.net/dialog/dialog.html#download)
* [apt-cyg](https://github.com/transcode-open/apt-cyg)
* [Cygwin](https://www.cygwin.com/)