dotfiles/copy.sh

111 lines
3.1 KiB
Bash
Raw Normal View History

#!/bin/bash
2021-10-06 09:40:58 -04:00
echo "Initializing dotfiles..."
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
FAKE_HOME="$SCRIPT_DIR/fake_home"
export f="$FAKE_HOME"
2024-01-08 17:53:16 -05:00
if ! command -v wget &> /dev/null; then
echo "wget must be installed!"
exit 1
fi
git submodule init
git submodule update
dotdirs="$(find $FAKE_HOME -mindepth 1 -type d)"
2021-10-06 13:01:46 -04:00
echo "$dotdirs" | while read -r dotdir; do
new="$HOME${dotdir:${#FAKE_HOME}}"
if test -d "$new"; then
continue
fi
echo "mkdir -p $new"
mkdir -p "$new"
done
2021-10-06 13:32:36 -04:00
dotfiles="$(find $FAKE_HOME -mindepth 1 -type f)"
2021-10-06 13:50:04 -04:00
echo "$dotfiles" | while read -r dotfile; do
new="$HOME${dotfile:${#FAKE_HOME}}"
if [[ "$(realpath $dotfile)" == "$(realpath $new)" ]]; then
continue
fi
echo "$dotfile => $new"
ln -sf "$dotfile" "$new"
done
2021-10-06 13:50:04 -04:00
function add-export {
if ! grep "$1" "$HOME/.zsh_local" &> /dev/null; then
echo "$1\"$2\"" >> "$HOME/.zsh_local"
fi
}
add-export "export DOT_DIR=" "$SCRIPT_DIR"
add-export "export f=" "$FAKE_HOME"
if [[ "$1" == "--files-only" ]]; then
exit 0
fi
2023-08-26 00:44:39 -04:00
if ! command -v cargo &> /dev/null; then
echo "Rust is not installed. Installing..."
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
fi
. "$HOME/.cargo/env"
2023-08-26 00:44:39 -04:00
if command -v cargo &> /dev/null && ! command -v bat &> /dev/null; then
echo "Bat is not installed. Installing..."
cargo install bat
fi
if ! test -d "$HOME/.nvm"; then
echo "nvm is not installed. Installing..."
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
nvm install 14
nvm install 18
nvm install node
nvm use node
2021-10-06 13:32:36 -04:00
fi
2023-08-26 00:44:39 -04:00
if ! command -v dotnet &> /dev/null; then
echo "dotnet is not installed. Installing..."
wget https://dot.net/v1/dotnet-install.sh -O /tmp/dotnet-install.sh
chmod +x /tmp/dotnet-install.sh
/tmp/dotnet-install.sh --version latest
rm /tmp/dotnet-install.sh
fi
2023-08-26 00:44:39 -04:00
if ! command -v starship &> /dev/null; then
echo "starship is not installed. Installing..."
2023-12-13 14:00:47 -05:00
curl -sS https://starship.rs/install.sh | sh
fi
2023-08-26 00:44:39 -04:00
if ! test -d $HOME/.config/JetBrains/; then
echo "JetBrains toolbox is not installed. Installing..."
2023-08-26 00:41:41 -04:00
ARCHIVE_URL="$(curl -s 'https://data.services.jetbrains.com/products/releases?code=TBA&latest=true&type=release' | grep -Po '"linux":.*?[^\\]",' | awk -F ':' '{print $3,":"$4}'| sed 's/[", ]//g')"
wget -q --show-progress -cO "/tmp/jetbrains-toolbox-latest.tar.gz" "$ARCHIVE_URL"
cd /tmp/
tar -xvf jetbrains-toolbox-latest.tar.gz --strip-components=1
chmod +x jetbrains-toolbox
./jetbrains-toolbox
fi
2024-01-08 18:49:57 -05:00
mkdir -p "$HOME/.local/share/fonts"
if ! test -f "$HOME/.local/share/fonts/FiraCodeNerdFontMono-Medium.ttf"; then
echo "FiraCode is not installed. Installing..."
2024-01-08 18:49:57 -05:00
wget -O /tmp/firacode.zip "https://github.com/ryanoasis/nerd-fonts/releases/download/v3.1.1/FiraCode.zip"
unzip -d "$HOME/.local/share/fonts" /tmp/firacode.zip
rm /tmp/firacode.zip
fc-cache -f -v
fi
2023-08-26 00:44:39 -04:00
if ! command -v fzf &> /dev/null; then
echo "You may wish to install fzf for sofi and other search"
2021-10-06 13:32:36 -04:00
fi