From 77ac53fa70f1b66f7bba462a0b426ca0559516c8 Mon Sep 17 00:00:00 2001 From: committer Date: Mon, 20 May 2024 21:24:05 -0500 Subject: [PATCH] + cups/printing --- dots/archinstall/t470p/services.txt | 3 +++ scripts/99_deploy.sh | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dots/archinstall/t470p/services.txt b/dots/archinstall/t470p/services.txt index 96c1b66..2a496af 100644 --- a/dots/archinstall/t470p/services.txt +++ b/dots/archinstall/t470p/services.txt @@ -1 +1,4 @@ lemurs.service +cups.service +cups.socket +cups.path diff --git a/scripts/99_deploy.sh b/scripts/99_deploy.sh index 6bd38f3..fd6bfcd 100644 --- a/scripts/99_deploy.sh +++ b/scripts/99_deploy.sh @@ -169,6 +169,25 @@ if [ ${operation} == "dots" ] ; then file_path=/etc deploy_file "${dots_trg}/environment/${file_name}" "${file_path}/${file_name}" no_chown + # ---------- + # printing + # + # src: + # - https://wiki.manjaro.org/index.php?title=Printing + # - http://localhost:631/help/admin.html + # + # example (turn the printer on, to see the "usb: value"): + # $ lpinfo -m | grep 'ql700' + # brother_ql700_printer_en.ppd Brother QL-700 CUPS + # $ lpinfo -v + # ... + # direct usb://Brother/QL-700?serial=000L0Z530516 + # ... + # ---------- + + #lpadmin -p Brother_HL-L2310D_series -D "Brother HL-L2310D_series" -E -v usb://Brother/HL-L2310D%20series?serial=E78096L7N181893 -m lsb/usr/cupsfilters/brother-HLL2310D-cups-en.ppd + #lpadmin -p Brother_QL-700 -D "Brother QL-700" -E -v usb://Brother/QL-700?serial=000L0Z530516 -m brother_ql700_printer_en.ppd + # ---------- # programs # ----------