diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index dbdb42c..36ab1c9 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -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" \ diff --git a/.scripts/doors/install_min_ubuntu b/.scripts/doors/install_min_ubuntu index ac5d61d..529a69f 100755 --- a/.scripts/doors/install_min_ubuntu +++ b/.scripts/doors/install_min_ubuntu @@ -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\ diff --git a/.scripts/doors/setup b/.scripts/doors/setup index 3a6240b..6b7598d 100755 --- a/.scripts/doors/setup +++ b/.scripts/doors/setup @@ -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 &&