This commit is contained in:
2026-08-19 12:27:34 -04:00
commit 38524559fa
3 changed files with 28 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
# How to setup Pass password utility
Install required packages
```
sudo pacman -S gnupg pass
```
Create a config directory for GnuPG
```
mkdir ~/.config/gnupg
chmod 700 ~/.config/gnupg
```
Add the following line to `~/.bashrc` :
```
GNUPGHOME=~/.config/gnupg
```
Then source .bashrc to add the new ENV var
```
source ~/.bashrc
```