This commit is contained in:
flyingscorpio@arch-desktop 2020-04-10 19:31:46 +02:00
parent d40f7f5c14
commit e5b2becbda
2 changed files with 14 additions and 0 deletions

View file

@ -38,3 +38,10 @@ if sudo pacman -S --needed gvim; then
else
echo "${RED}Didn't install Vim${NC}"
fi
echo "Installing miscellaneous things..."
if sudo pacman -S --needed curl; then
echo "${GREEN}Successfully installed curl${NC}"
else
echo "${RED}Didn't install curl${NC}"
fi

View file

@ -47,3 +47,10 @@ if sudo apt install gvim; then
else
echo "${RED}Didn't install Vim${NC}"
fi
echo "Installing miscellaneous things..."
if sudo pacman -S --needed curl; then
echo "${GREEN}Successfully installed curl${NC}"
else
echo "${RED}Didn't install curl${NC}"
fi