mirror of
https://github.com/elisspace/ArchMatic.git
synced 2026-08-29 15:33:47 +00:00
31 lines
905 B
Bash
Executable File
31 lines
905 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#-------------------------------------------------------------------------
|
|
# _ _ __ __ _ _
|
|
# /_\ _ _ __| |_ | \/ |__ _| |_(_)__
|
|
# / _ \| '_/ _| ' \| |\/| / _` | _| / _|
|
|
# /_/ \_\_| \__|_||_|_| |_\__,_|\__|_\__|
|
|
# Arch Linux Post Install Setup and Config
|
|
#-------------------------------------------------------------------------
|
|
|
|
echo
|
|
echo "INSTALLING PRINTER DRIVERS"
|
|
echo
|
|
|
|
PKGS=(
|
|
'cups' # Open source printer drivers
|
|
'cups-pdf' # PDF support for cups
|
|
'ghostscript' # PostScript interpreter
|
|
'gsfonts' # Adobe Postscript replacement fonts
|
|
'hplip' # HP Drivers
|
|
'system-config-printer' # Printer setup utility
|
|
)
|
|
|
|
for PKG in "${PKGS[@]}"; do
|
|
echo "INSTALLING ${PKG}"
|
|
sudo pacman -S "$PKG" --noconfirm --needed
|
|
done
|
|
|
|
echo
|
|
echo "Done!"
|
|
echo
|