Compare commits

..

No commits in common. "f1a710fe5fb7b6cc5ad0e0cd1bd827a6b806918b" and "3d2fb260c3111ed7aa39726a48b25a4960a2537e" have entirely different histories.

5 changed files with 32 additions and 105 deletions

117
copy.sh
View File

@ -1,96 +1,41 @@
#!/bin/bash #!/bin/bash
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" # Install required packages
FAKE_HOME="$SCRIPT_DIR/fake_home" if [[ "$1" != "--install" ]]; then
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
FAKE_HOME="$SCRIPT_DIR/fake_home"
dotdirs="$(find $FAKE_HOME -mindepth 1 -type d)" dotdirs="$(find $FAKE_HOME -mindepth 1 -type d)"
echo "$dotdirs" | while read -r dotdir; do echo "$dotdirs" | while read -r dotdir; do
new="$HOME${dotdir:${#FAKE_HOME}}" new="$HOME${dotdir:${#FAKE_HOME}}"
echo "mkdir -p $new" echo "mkdir -p $new"
mkdir -p $new mkdir -p $new
done done
dotfiles="$(find $FAKE_HOME -mindepth 1 -type f)" dotfiles="$(find $FAKE_HOME -mindepth 1 -type f)"
echo "$dotfiles" | while read -r dotfile; do echo "$dotfiles" | while read -r dotfile; do
new="$HOME${dotfile:${#FAKE_HOME}}" new="$HOME${dotfile:${#FAKE_HOME}}"
echo "$dotfile => $new" echo "$dotfile => $new"
ln -sf "$dotfile" "$new" ln -sf "$dotfile" "$new"
done done
touch "$HOME/.zsh_local" touch "$HOME/.zsh_local"
if [[ "$1" == "--files-only" ]]; then
exit 0
fi
echo
echo "Installing required packages..."
echo -n "Rust is "
if ! command -v cargo &> /dev/null; then
echo "not installed. Installing..."
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
else else
echo "already installed." echo -n "Rust is "
fi if ! command -v cargo; then
echo "not installed. Installing..."
. "$HOME/.cargo/env" curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
if command -v cargo &> /dev/null && ! command -v bat &> /dev/null; then else
cargo install bat echo "installed."
fi fi
. "$HOME/.cargo/env"
echo -n "nvm is " if command -v cargo; then
if ! test -d "$HOME/.nvm"; then cargo install bat
echo "not installed. Installing..." fi
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash curl -sS https://starship.rs/install.sh | sh
export NVM_DIR="$HOME/.nvm" echo "Starship requires an NFont: https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm echo "You may wish to install fzf"
[ -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
else
echo "already installed."
fi
echo -n "dotnet is "
if ! command -v dotnet &> /dev/null; then
echo "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
else
echo "already installed."
fi
echo -n "starship is "
if ! command -v starship &> /dev/null; then
echo "not installed. Installing..."
curl -sS https://starship.rs/install.sh | sh
echo "Starship requires an NFont: https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip"
else
echo "already installed."
fi
echo -n "JetBrains toolbox is "
if ! test -d $HOME/.config/JetBrains/; then
echo "not installed. Installing..."
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
else
echo "already installed."
fi
if ! command -v fzf &> /dev/null; then
echo "You may wish to install fzf for sofi and other search"
else
echo "fzf is already installed"
fi fi

View File

@ -139,4 +139,3 @@ ex ()
} }
source ~/.shell_aliases source ~/.shell_aliases
. "$HOME/.cargo/env"

View File

@ -4,18 +4,6 @@ function fin {
find -iname "*$@*" find -iname "*$@*"
} }
function gamp {
git add * && git commit -am "$1" && git push
}
function gap {
git add * && git commit -a && git push
}
function gd {
git add * && git diff --cached --word-diff=porcelain
}
function wf { function wf {
if [[ "$@" != "" ]]; then if [[ "$@" != "" ]]; then
local fzf_args="-q $@" local fzf_args="-q $@"
@ -57,11 +45,6 @@ function vo {
echo $f echo $f
} }
alias yt='yt-dlp'
function y {
cd ~/.ytdl; yt-dlp $@; cd -
}
# Mkdir should remind you to use git # Mkdir should remind you to use git
alias mkdir="echo 'Maybe use git init if this is a new project' && mkdir" alias mkdir="echo 'Maybe use git init if this is a new project' && mkdir"

View File

@ -38,7 +38,7 @@ if [ -x /usr/bin/dircolors ]; then
alias egrep='egrep --color=auto' alias egrep='egrep --color=auto'
fi fi
export PATH=./:~/.bin:$HOME/.dotnet:$HOME/.platformio/penv/bin:/usr/local/go/bin:$PATH export PATH=./:~/.bin:$HOME/.platformio/penv/bin:/usr/local/go/bin:$PATH
fignore=(o) fignore=(o)