Created
July 20, 2021 18:27
-
-
Save usmcamp0811/6673f37b185b5cfbd1945f2cc233f59b to your computer and use it in GitHub Desktop.
simple arch setup script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "Installing Base Packages from the Arch main repositories" | |
sudo pacman -S $(curl https://raw.githubusercontent.com/usmcamp0811/dotfiles/wopr/pkglist-base | cut -d ' ') | |
echo "Installing Base Packages from AUR" | |
sudo pacman -S $(curl https://raw.githubusercontent.com/usmcamp0811/dotfiles/wopr/pkglist-aur-base | cut -d ' ') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment