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
alias \
hosts="sudo nvim /etc/hosts" \
push="rsync -avzP --copy-links " \
push="rsync -avzP " \
sup="push ~/projects/http deez:" \
vs="source bin/activate" \
vd="deactivate" \

View file

@ -1,7 +1,5 @@
#!/bin/bash
# Base
sudo apt-get install git rsync btop neovim byobu zsh nnn
# Packer
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))
=======================================================
"
. /etc/os-release
OS=$NAME
if test -d Doors; then
rm -rf Doors
fi
. /etc/os-release
OS=$NAME
if [[ $OS == *Arch* ]]; then
sudo sed '/Color/s/^#//' -i /etc/pacman.conf &&
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
elif [[ $OS == *buntu* ]]; then
# Base
sudo apt-get install git rsync btop neovim byobu zsh nnn
.doors/.scripts/doors/install_min_ubuntu
fi
git clone https://github.com/adoyle0/Doors.git &&
mkdir .doors &&
rsync -avzP Doors/ .doors &&
rm -rf Doors &&