Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,13 @@ install_bashrc_support() {
sudo apt-get install /tmp/fastfetch_latest_amd64.deb
;;
"arch")
sudo paru multitail tree zoxide trash-cli fzf bash-completion fastfetch
if command -v paru >/dev/null 2>&1; then
paru -S --needed --noconfirm multitail tree zoxide trash-cli fzf bash-completion fastfetch
elif command -v yay >/dev/null 2>&1; then
yay -S --needed --noconfirm multitail tree zoxide trash-cli fzf bash-completion fastfetch
else
echo "Error: No AUR helper (paru/yay) found. Install one first." >&2
fi
;;
"slackware")
echo "No install support for Slackware"
Expand Down