package installation init

This commit is contained in:
Benjamin Palko 2024-03-02 20:02:08 -05:00
parent 91392c3956
commit 8aca0c51e5
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#!/bin/bash
echo "Installing pacman packages..."
_installPackagesPacman = "${packagesPacman[@]}"
echo "Installing yay packages..."
_installPackagesYay = "${packagesYay[@]}"
echo "Installing brew packages..."
_installPackagesBrew = "${packagesBrew[@]}"

View file

@ -0,0 +1,27 @@
packagesPacman=(
"zsh"
"bitwarden"
"firefox"
"git"
"github-cli"
"lazygit"
"neofetch"
"neovim"
"ttf-jetbrains-mono-nerd"
"wget"
"curl"
"xclip"
"ripgrep"
"waybar"
"swaylock"
"swayidle"
)
packagesYay=(
)
packagesBrew=(
"zsh-autosuggestions"
"zsh-syntax-highlighting"
"asdf"
)