Files
coredesktop/bitwarden.sh
T
2026-09-09 15:14:37 -06:00

11 lines
246 B
Bash

#!/bin/bash
export SSH_AUTH_SOCK="$HOME/.bitwarden-ssh-agent.sock"
if grep -qF "$LINE" ~/.bashrc; then
echo "Bitwarden SSH agent already configured in .bashrc"
else
echo "$LINE" >> ~/.bashrc
echo "Bitwarden SSH agent added to .bashrc"
fi