Files
dotfiles/omarchy_package_install.sh
T
2026-03-07 21:51:19 +00:00

20 lines
289 B
Bash

#!/usr/bin/env bash
#
pacman_to_add=(
"tree"
"ttf-fira-code"
"cronie"
)
aur_to_add=(
"bazecor"
"lmstudio-bin"
)
package_str=(IFS=' ' ; echo "${pacman_to_add[@]}")
aur_str=(IFS=' ' ; echo "${aur_to_add[@]}")
omarchy-pkg-add $package_str
omarchy-pkg-aur-add $aur_str