Merge Arch config as main #1

Closed
baobeld wants to merge 228 commits from arch(btw) into master
Showing only changes of commit 1632c12ac7 - Show all commits

9
.install/brew-install.sh Normal file
View file

@ -0,0 +1,9 @@
#!/bin/bash
if [[ $(command -v brew) == "" ]]; then
echo "Installing Homebrew"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
else
echo "Updating Homebrew"
brew update
fi