mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-21 12:59:41 +00:00
Merge 69c5d0a412
into 79eb752552
This commit is contained in:
commit
8247c58b03
29
core/tabs/utils/printers/install-epson-printer-drivers.sh
Normal file
29
core/tabs/utils/printers/install-epson-printer-drivers.sh
Normal file
|
@ -0,0 +1,29 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
. ../../common-script.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
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
checkEnv
|
||||
checkEscalationTool
|
||||
checkAURHelper
|
||||
installEpsonPrinterDriver
|
|
@ -76,6 +76,14 @@ name = "Set Resolution"
|
|||
description = "This script is designed to change the resolution of monitors connected to your system"
|
||||
script = "monitor-control/set_resolutions.sh"
|
||||
|
||||
[[data]]
|
||||
name = "Printers"
|
||||
|
||||
[[data.entries]]
|
||||
name = "Install EPSON printer drivers"
|
||||
script = "printers/install-epson-printer-drivers.sh"
|
||||
task_list = "I"
|
||||
|
||||
[[data]]
|
||||
name = "User Account Manager"
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user