add chezmoi instructions and improve bw-cli instructions
parent
aeb874001e
commit
b1856d8b2f
14
README.md
14
README.md
|
@ -49,7 +49,6 @@ pamac install \
|
||||||
base-devel \
|
base-devel \
|
||||||
bash-completion \
|
bash-completion \
|
||||||
bat \
|
bat \
|
||||||
bitwarden-cli \
|
|
||||||
bottom \
|
bottom \
|
||||||
direnv \
|
direnv \
|
||||||
dust \
|
dust \
|
||||||
|
@ -84,6 +83,7 @@ pamac install \
|
||||||
starship \
|
starship \
|
||||||
tealdeer \
|
tealdeer \
|
||||||
tmux \
|
tmux \
|
||||||
|
unzip \
|
||||||
vim \
|
vim \
|
||||||
virt-manager \
|
virt-manager \
|
||||||
zoxide
|
zoxide
|
||||||
|
@ -95,10 +95,16 @@ pamac build lightly-qt
|
||||||
# Bitwarden
|
# Bitwarden
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
curl -Lo bw.zip 'https://vault.bitwarden.com/download/?app=cli&platform=linux'
|
||||||
|
unzip bw.zip
|
||||||
|
mkdir -p "$HOME/.local/bin" "$HOME/.config/bash"
|
||||||
|
install -m 755 bw "$HOME/.local/bin/"
|
||||||
|
rm -f bw bw.zip
|
||||||
bw config server https://bitwarden.penguincoder.org
|
bw config server https://bitwarden.penguincoder.org
|
||||||
bw login
|
bw login
|
||||||
echo "export BW_SESSION=$(bw unlock --raw)" > "$HOME/.config/bash/bitwarden.sh"
|
echo "export BW_SESSION=$(bw unlock --raw)" > "$HOME/.config/bash/bitwarden.sh"
|
||||||
source "$HOME/.config/bash/bitwarden.sh"
|
source "$HOME/.config/bash/bitwarden.sh"
|
||||||
|
bw sync
|
||||||
```
|
```
|
||||||
|
|
||||||
# Kitty
|
# Kitty
|
||||||
|
@ -123,3 +129,9 @@ sh <(curl -L https://nixos.org/nix/install) --daemon
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Chezmoi
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sh -c "$(curl -fsLS chezmoi.io/get)"
|
||||||
|
mv ./bin/chezmoi "$HOME/.local/bin/"
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue