Add files via upload

This commit is contained in:
stornic56
2026-06-03 20:15:52 -05:00
committed by GitHub
parent eec16d0c83
commit 3d1738ddc0
18 changed files with 1173 additions and 830 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env bash
# essential.sh — one-click essentials pack
_quick_install() {
local fetch_pkg
if [ "$DEBIAN_CODENAME" = "bookworm" ]; then
fetch_pkg="neofetch"
else
fetch_pkg="fastfetch"
fi
_msg "Essential Pack" \
"Install basic programs:\n\n - Compression (zip, unrar, 7z)\n - System tools (htop, inxi, ${fetch_pkg})\n - VLC media player\n - Microsoft fonts" 13 60
local quick_pkgs=(
zip unzip rar unrar p7zip-full p7zip-rar
"$fetch_pkg" htop vlc inxi ttf-mscorefonts-installer
)
_run_install_batch "${quick_pkgs[@]}"
echo -e "${GREEN}Essential Pack installed.${NC}"
}