pwsh-vault/README.md

78 lines
1.9 KiB
Markdown
Raw Normal View History

2022-06-11 12:29:33 +02:00
pwsh-vault - Basic Password Manager written in Bash+Dmenu
=========================================================
### Dependencies:
* **Arch Linux:**
2022-06-13 17:42:47 +02:00
* `sudo pacman -S git gcc make coreutils sed expat zip unzip freetype2 libxinerama brotli fontconfig libbsd libmd libpng libx11 libxau libxdmcp libxft libxrender`
2022-06-11 12:29:33 +02:00
* **Debian/Ubuntu:**
2022-06-13 17:42:47 +02:00
* `sudo apt install git gcc make coreutils sed zip unzip libexpat1-dev libfreetype-dev libxinerama-dev x11-utils libxft-dev libfreetype6-dev libfontconfig1-dev libpng-dev libbrotli-dev libxrender-dev libmd-dev libxau-dev libbsd-dev libxdmcp-dev`
2022-06-18 15:49:54 +02:00
* **Windows Cygwin ([apt-cyg](https://github.com/transcode-open/apt-cyg)):**
2022-06-13 17:42:47 +02:00
* `apt-cyg install git make coreutils sed zip unzip`
2022-06-18 15:49:54 +02:00
* **Android ([Termux](https://termux.com/)):**
* `pkg install git make coreutils sed zip unzip`
2022-06-11 12:29:33 +02:00
2022-06-18 15:49:54 +02:00
### Build and install (Unix/Linux Posix):
2022-06-11 12:29:33 +02:00
* Open terminal and run the following commands:
```shell
2022-06-11 12:32:47 +02:00
$ git clone https://github.com/q3aql/pwsh-vault.git
2022-06-11 12:42:43 +02:00
$ cd pwsh-vault
2022-06-11 12:29:33 +02:00
$ sudo make install clean
````
2022-06-18 15:49:54 +02:00
### Download & install (Windows Cygwin):
2022-06-13 17:35:51 +02:00
* Open terminal and run the following commands:
```shell
$ git clone https://github.com/q3aql/pwsh-vault.git
$ cd pwsh-vault
$ make cygwin
````
2022-06-18 15:49:54 +02:00
### Download & install (Android Termux):
* Open terminal and run the following commands:
```shell
$ git clone https://github.com/q3aql/pwsh-vault.git
$ cd pwsh-vault
$ make termux
````
### GUI Version (only for Linux):
2022-06-11 12:29:33 +02:00
```shell
pwsh-vault
```
<img src="examples/pwsh-vault.png" />
### CLI Version:
```shell
pwsh-vault-cli
```
<img src="examples/pwsh-vault-cli.png" />
```shell
pwsh-vault (or pwsh-vault-cli) --help
```
<img src="examples/pwsh-vault-help.png" />
### External links:
* [dmenu homepage](https://tools.suckless.org/dmenu/)
2022-06-13 17:42:47 +02:00
* [apt-cyg](https://github.com/transcode-open/apt-cyg)
* [Cygwin](https://www.cygwin.com/)