Compare commits

...

8 Commits

Author SHA1 Message Date
Vorthas
8d84574c27
Merge 3ad9adf84f into e3688e9b3d 2024-10-24 16:03:51 -04:00
Vorthas
3ad9adf84f Actually generate the updated userguide. 2024-10-24 15:53:22 -04:00
Vorthas
c8c273461d Fix typo, oops. 2024-10-24 15:52:41 -04:00
Vorthas
1e005b5d19 Add description to tab_data.toml for the printer addition. 2024-10-24 15:51:12 -04:00
Vorthas
364a4c5973 Update userguide.md based on adam's documentation update. 2024-10-24 15:48:17 -04:00
Vorthas
69c5d0a412
Update core/tabs/utils/printers/install-epson-printer-drivers.sh
Co-authored-by: JEEVITHA KANNAN K S <ksjeevithakannan123@gmail.com>
2024-10-21 15:32:04 -04:00
Vorthas
e170ec0cc8 Add I to the task_list for this script. 2024-10-15 18:12:53 -04:00
Vorthas
aa95e70f23 Add basic script to install Epson printer drivers in Arch, Debian, and Fedora. 2024-10-15 18:04:13 -04:00
3 changed files with 42 additions and 0 deletions

View 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

View File

@ -76,6 +76,15 @@ name = "Set Resolution"
description = "This script is designed to change the resolution of monitors connected to your system" description = "This script is designed to change the resolution of monitors connected to your system"
script = "monitor-control/set_resolutions.sh" script = "monitor-control/set_resolutions.sh"
[[data]]
name = "Printers"
[[data.entries]]
name = "Install Epson printer drivers"
script = "printers/install-epson-printer-drivers.sh"
description = "This script will install the Epson printer drivers."
task_list = "I"
[[data]] [[data]]
name = "User Account Manager" name = "User Account Manager"

View File

@ -141,6 +141,10 @@ For more information visit: https://rpmfusion.org/
- **Set Primary Monitor**: This script is designed to set a Primary monitor in your system - **Set Primary Monitor**: This script is designed to set a Primary monitor in your system
- **Set Resolution**: This script is designed to change the resolution of monitors connected to your system - **Set Resolution**: This script is designed to change the resolution of monitors connected to your system
### Printers
- **Install Epson printer drivers**: This script will install the Epson printer drivers.
### User Account Manager ### User Account Manager
- **Auto Mount Drive**: This utility is designed to help with automating the process of mounting a drive on to your system. - **Auto Mount Drive**: This utility is designed to help with automating the process of mounting a drive on to your system.