mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-22 05:12:27 +00:00
Compare commits
1 Commits
367f9fa07b
...
8d84574c27
Author | SHA1 | Date | |
---|---|---|---|
|
8d84574c27 |
|
@ -1,28 +0,0 @@
|
|||
#!/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
|
|
@ -1,31 +1,29 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
. ../../common-script.sh
|
||||
. ./install-cups.sh
|
||||
|
||||
# Function to install drivers for Epson printers
|
||||
installEpsonPrinterDriver() {
|
||||
clear
|
||||
|
||||
case "$PACKAGER" in
|
||||
pacman)
|
||||
"$AUR_HELPER" -S --noconfirm epson-inkjet-printer-escpr
|
||||
;;
|
||||
apt-get | nala)
|
||||
"$ESCALATION_TOOL" "$PACKAGER" install -y printer-driver-escpr
|
||||
;;
|
||||
dnf)
|
||||
"$ESCALATION_TOOL" "$PACKAGER" install -y epson-inkjet-printer-escpr
|
||||
;;
|
||||
*)
|
||||
printf "%b\n" "${RED}Unsupported package manager ${PACKAGER}${RC}"
|
||||
exit 1
|
||||
;;
|
||||
pacman)
|
||||
"$AUR_HELPER" -S --noconfirm epson-inkjet-printer-escpr
|
||||
;;
|
||||
apt-get|nala)
|
||||
"$ESCALATION_TOOL" "$PACKAGER" install -y printer-driver-escpr
|
||||
;;
|
||||
dnf)
|
||||
"$ESCALATION_TOOL" "$PACKAGER" install -y epson-inkjet-printer-escpr
|
||||
;;
|
||||
*)
|
||||
printf "%b\n" "${RED}Unsupported package manager ${PACKAGER}${RC}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
checkEnv
|
||||
checkEscalationTool
|
||||
checkAURHelper
|
||||
installCUPS
|
||||
installEpsonPrinterDriver
|
||||
|
|
|
@ -79,12 +79,6 @@ script = "monitor-control/set_resolutions.sh"
|
|||
[[data]]
|
||||
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]]
|
||||
name = "Install Epson printer drivers"
|
||||
script = "printers/install-epson-printer-drivers.sh"
|
||||
|
|
|
@ -143,7 +143,6 @@ For more information visit: https://rpmfusion.org/
|
|||
|
||||
### 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.
|
||||
|
||||
### User Account Manager
|
||||
|
|
Loading…
Reference in New Issue
Block a user