Go to file
Andrew Coleman f59b081d03 update print function 2022-11-08 08:47:38 -05:00
dev add dev dir 2021-04-12 21:59:04 -04:00
dot_config update plugins to include language server and tree sitter 2022-09-16 11:50:48 -04:00
private_dot_local/private_bin update print function 2022-11-08 08:47:38 -05:00
.chezmoiignore only use ssh-agent in wsl 2022-08-19 14:58:57 -04:00
README.md remove bitwarden dependency 2022-08-25 13:06:06 -04:00
dot_bash_profile add .bash_profile 2021-04-13 15:56:01 -04:00
dot_bashrc.tmpl remove weird wayland env vars 2022-08-12 14:14:02 -04:00
dot_gitconfig update configs 2022-05-10 13:58:50 -04:00
dot_profile simplify .profile 2021-04-13 15:55:45 -04:00
dot_tmux.conf add tmux configuration 2021-04-14 16:34:14 -04:00
dot_vimrc update configs 2022-05-10 13:58:50 -04:00

README.md

Bitwarden

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 login
echo "export BW_SESSION=$(bw unlock --raw)" > "$HOME/.config/bash/bitwarden.sh"
source "$HOME/.config/bash/bitwarden.sh"
bw sync

Kitty

curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin
mkdir -p "$HOME/.local/bin"
ln -s "$HOME/.local/kitty.app/bin/kitty" "$HOME/.local/bin/"
cp "$HOME/.local/kitty.app/share/applications/kitty.desktop" "$HOME/.local/share/applications/"
cp "$HOME/.local/kitty.app/share/applications/kitty-open.desktop" "$HOME/.local/share/applications/"
sed -i "s|Icon=kitty|Icon=$HOME/.local/kitty.app/share/icons/hicolor/256x256/apps/kitty.png|g" $HOME/.local/share/applications/kitty*.desktop

Chezmoi

sh -c "$(curl -fsLS chezmoi.io/get)"
mv ./bin/chezmoi "$HOME/.local/bin/"
chezmoi init --apply ssh://git@git.penguincoder.org:2222/penguincoder/dotfiles.git

Gitea token

echo -e "export GITEA_TOKEN=$(bw get item gitea | jq -r '.fields[] | select(.name == "token").value')\nexport GITEA_HOST=https://git.penguincoder.org" | tee "$HOME/.config/bash/gitea.sh"