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

27 lines
662 B
Bash
Raw Normal View History

2023-04-13 14:04:29 -05:00
#!/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"
2023-07-06 11:41:19 -05:00
paru -Sy --needed --noconfirm \
weechat `# IRC Client` \
rtx-bin `# Version Manager` \
bluetuith `# 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` \
2023-07-07 12:35:53 -05:00
tokei `# Counting Lines of Code (cloc alternative)` \
2023-07-06 11:41:19 -05:00
pigz `# Multicore Compression Utility` \