mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
10 lines
273 B
Bash
10 lines
273 B
Bash
echo "Ensure TTE and dependencies are installed"
|
|
|
|
if ! pacman -Q python-poetry-core &>/dev/null; then
|
|
sudo pacman -S --noconfirm python-poetry-core
|
|
fi
|
|
|
|
if ! pacman -Q python-terminaltexteffects &>/dev/null; then
|
|
sudo pacman -S --noconfirm python-terminaltexteffects
|
|
fi
|