This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/os/linux/arch/provision.d/20-install-packages.bash

52 lines
1.6 KiB
Bash
Raw Normal View History

2018-04-12 10:28:36 -05:00
#!/usr/bin/env bash
2021-03-22 11:09:02 -05:00
if grep -E -q '^\[multilib\]$' /etc/pacman.conf; then
2019-09-15 08:43:52 -05:00
echo "Multilib Repository Already Enabled!"
else
echo "Enabling Multilib Repository (with sudo)..."
sudo sh -c 'echo -e "\n\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf'
fi
yay -Sy --needed --noconfirm \
2020-12-07 22:41:05 -06:00
fwupd \
2019-09-15 08:43:52 -05:00
docker `# Containers` \
2019-09-26 12:04:23 -05:00
ncdu `# Disk Usage Analyzer` \
2020-11-01 19:12:11 -06:00
efibootmgr efivar `# UEFI Boot CLI Stuff` \
2020-11-07 22:23:52 -06:00
weechat `# IRC Client` \
aria2 `# Downloads Manager` \
dmenu `# Application Launcher` \
ripgrep `# Code Search Utilities` \
fd `# File Search` \
2020-11-20 21:40:10 -06:00
exa `# Better ls` \
2020-11-07 22:23:52 -06:00
sd `# Easy Find/Replace` \
2020-11-20 21:40:10 -06:00
bat `# Better Cat` \
2020-11-07 22:23:52 -06:00
fzf `# Fuzzy File Finder` \
htop `# Process Management and System Resources Monitoring` \
openssh mosh `# Remote Access` \
openssl `# Crypto` \
asdf-vm `# Runtime Version Manager` \
2020-12-07 20:50:13 -06:00
pass passff-host `# Password Management` \
hexyl `# CLI Hex Viewer` \
2020-11-07 22:23:52 -06:00
rsync `# File Transfer` \
neovim-nightly-bin `# Text Editors` \
sc-im `# Spreadsheets` \
2020-11-07 22:23:52 -06:00
unzip `# Simple Unzipping` \
tmux `# Terminal Multiplexer` \
kitty `# Almost Better Terminal Emulator` \
curl `# HTTP Utility` \
w3m `# Terminal Browser` \
2020-11-07 22:23:52 -06:00
jq `# CLI for Interacting with JSON` \
httpie `# httpie and neovim dependencies` \
docker docker-compose `# Yummy containers` \
inotify-tools `# Watching` \
fish `# Shell` \
time `# GNU time` \
fortune-mod fortune-mod-archlinux `# Fortune` \
oath-toolkit `# One-Time Passwords` \
2020-11-20 20:35:46 -06:00
sysstat `# System Statistics` \
reflector-simple `# Simplify Mirror Management` \
inetutils `# netutils` \
nnn `# CLI File Manager` \
ntfs-3g `# Windows filesystem stuff` \
man-db man-pages `# Come On, Man!`