Add installation of CUPS as a pre-requisite for Epson printer drivers as well as standalone script for other printer drivers to be added in the future.

This commit is contained in:
Vorthas 2024-10-25 11:23:29 -04:00
parent 3ad9adf84f
commit 8e935fbcc0
4 changed files with 50 additions and 13 deletions

View File

@ -0,0 +1,28 @@
#!/bin/sh -e
. ../../common-script.sh
# Function to install CUPS for printers
installCUPS() {
clear
case "$PACKAGER" in
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -S --noconfirm cups
;;
apt-get | nala)
"$ESCALATION_TOOL" "$PACKAGER" install -y cups
;;
dnf)
"$ESCALATION_TOOL" "$PACKAGER" install -y cups
;;
*)
printf "%b\n" "${RED}Unsupported package manager ${PACKAGER}${RC}"
exit 1
;;
esac
}
checkEnv
checkEscalationTool
installCUPS

View File

@ -1,29 +1,31 @@
#!/bin/sh -e #!/bin/sh -e
. ../../common-script.sh . ../../common-script.sh
. ./install-cups.sh
# Function to install drivers for Epson printers # Function to install drivers for Epson printers
installEpsonPrinterDriver() { installEpsonPrinterDriver() {
clear clear
case "$PACKAGER" in case "$PACKAGER" in
pacman) pacman)
"$AUR_HELPER" -S --noconfirm epson-inkjet-printer-escpr "$AUR_HELPER" -S --noconfirm epson-inkjet-printer-escpr
;; ;;
apt-get|nala) apt-get | nala)
"$ESCALATION_TOOL" "$PACKAGER" install -y printer-driver-escpr "$ESCALATION_TOOL" "$PACKAGER" install -y printer-driver-escpr
;; ;;
dnf) dnf)
"$ESCALATION_TOOL" "$PACKAGER" install -y epson-inkjet-printer-escpr "$ESCALATION_TOOL" "$PACKAGER" install -y epson-inkjet-printer-escpr
;; ;;
*) *)
printf "%b\n" "${RED}Unsupported package manager ${PACKAGER}${RC}" printf "%b\n" "${RED}Unsupported package manager ${PACKAGER}${RC}"
exit 1 exit 1
;; ;;
esac esac
} }
checkEnv checkEnv
checkEscalationTool checkEscalationTool
checkAURHelper checkAURHelper
installCUPS
installEpsonPrinterDriver installEpsonPrinterDriver

View File

@ -79,6 +79,12 @@ script = "monitor-control/set_resolutions.sh"
[[data]] [[data]]
name = "Printers" name = "Printers"
[[data.entries]]
name = "Install CUPS"
script = "printers/install-cups.sh"
description = "This script will install the CUPS system, required for most printer drivers on Linux."
task_list = "I"
[[data.entries]] [[data.entries]]
name = "Install Epson printer drivers" name = "Install Epson printer drivers"
script = "printers/install-epson-printer-drivers.sh" script = "printers/install-epson-printer-drivers.sh"

View File

@ -143,6 +143,7 @@ For more information visit: https://rpmfusion.org/
### Printers ### Printers
- **Install CUPS**: This script will install the CUPS system, required for most printer drivers on Linux.
- **Install Epson printer drivers**: This script will install the Epson printer drivers. - **Install Epson printer drivers**: This script will install the Epson printer drivers.
### User Account Manager ### User Account Manager