mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
6 lines
173 B
Bash
6 lines
173 B
Bash
echo "Add missing installation of bat (used by the ff alias)"
|
|
if ! command -v bat &>/dev/null; then
|
|
# Add missing installation of bat
|
|
yay -S --noconfirm --needed bat
|
|
fi
|