package installation init
This commit is contained in:
parent
91392c3956
commit
8aca0c51e5
2 changed files with 38 additions and 0 deletions
11
.install/install-packages.sh
Normal file
11
.install/install-packages.sh
Normal 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[@]}"
|
||||||
|
|
||||||
27
.install/packages/general.sh
Normal file
27
.install/packages/general.sh
Normal 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"
|
||||||
|
)
|
||||||
Loading…
Add table
Reference in a new issue