Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

CrazyChef

macrumors newbie
Original poster
Apr 14, 2019
7
1
Worcester, MA
Hey!

I just got a new printer due to my old one having the print heads dry out to the point of no return. I'd like to be able to automatically print a print a test page once or twice a week just to keep the heads wet on the new printer. Is there a way to do this with Automator? If it matters, the new printer is an Epson EcoTank ET-2760, and I'm using an early 2015 Macbook Pro running Monterey. Thanks!
 

NoBoMac

Moderator
Staff member
Jul 1, 2014
6,254
4,939
Can also create a simple LaunchAgent and put it in one's ~/Library/LaunchAgent directory.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
        <key>Label</key>
        <string>org.myname.pingprinter</string>
        <key>ProgramArguments</key>
        <array>
                <string>/usr/bin/lpr</string>
                <string>myfile.pdf</string>
        </array>

        <key>StartInterval</key>
        <integer>604800</integer>
</dict>
</plist>

 
  • Like
Reactions: CrazyChef
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.