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/70-optional-packages.bash

29 lines
711 B
Bash
Executable File

#!/usr/bin/env bash
dir="$(dirname "$(realpath "$0")")"
echo "Inside $dir"
yn() {
echo "$1 [y/N]"
read -r y
# bash convert to lowercase magic
[[ ${y,,} =~ ^y ]]
}
yn "Do you want to install UI packages?" && "$dir/optional/ui-packages.bash"
paru -Sy --needed --noconfirm \
weechat `# IRC Client` \
rtx-bin `# Version Manager` \
restic `# Backups` \
bluetuith-bin `# Disk Usage Analyzer` \
aria2 `# Downloads Manager` \
oath-toolkit `# TOTP Utility` \
pass pass-otp `# Password Management` \
sc-im `# Spreadsheets` \
cloc `# For counting lines of code` \
gitui `# Git TUI` \
tokei `# Counting Lines of Code (cloc alternative)` \
swaks `# Email CLI` \
pigz `# Multicore Compression Utility` \