This commit is contained in:
Adam 2023-02-03 05:19:49 -05:00
parent 9508637fb8
commit a69514931e
3 changed files with 10 additions and 10 deletions

View file

@ -58,7 +58,7 @@ ccat="highlight --out-format=ansi" \
# Laziness # Laziness
alias \ alias \
hosts="sudo nvim /etc/hosts" \ hosts="sudo nvim /etc/hosts" \
push="rsync -avzP --copy-links " \ push="rsync -avzP " \
sup="push ~/projects/http deez:" \ sup="push ~/projects/http deez:" \
vs="source bin/activate" \ vs="source bin/activate" \
vd="deactivate" \ vd="deactivate" \

View file

@ -1,7 +1,5 @@
#!/bin/bash #!/bin/bash
# Base
sudo apt-get install git rsync btop neovim byobu zsh nnn
# Packer # Packer
git clone --depth 1 https://github.com/wbthomason/packer.nvim\ git clone --depth 1 https://github.com/wbthomason/packer.nvim\

View file

@ -4,23 +4,25 @@ echo "
Installing D's nux (you're gonna love my nux(really)) Installing D's nux (you're gonna love my nux(really))
======================================================= =======================================================
" "
. /etc/os-release
OS=$NAME
if test -d Doors; then if test -d Doors; then
rm -rf Doors rm -rf Doors
fi fi
. /etc/os-release
OS=$NAME
if [[ $OS == *Arch* ]]; then if [[ $OS == *Arch* ]]; then
sudo sed '/Color/s/^#//' -i /etc/pacman.conf && sudo sed '/Color/s/^#//' -i /etc/pacman.conf &&
sudo pacman -S --needed --noconfirm git rsync base-devel && sudo pacman -S --needed --noconfirm git rsync base-devel &&
git clone https://github.com/adoyle0/Doors.git &&
mkdir .doors &&
rsync -avzP Doors/ .doors &&
rm -rf Doors &&
.doors/.scripts/doors/install_min_arch .doors/.scripts/doors/install_min_arch
elif [[ $OS == *buntu* ]]; then elif [[ $OS == *buntu* ]]; then
# Base
sudo apt-get install git rsync btop neovim byobu zsh nnn
.doors/.scripts/doors/install_min_ubuntu .doors/.scripts/doors/install_min_ubuntu
fi fi
git clone https://github.com/adoyle0/Doors.git &&
mkdir .doors &&
rsync -avzP Doors/ .doors &&
rm -rf Doors &&