
Karamba Ink Level Monitor
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
This is a little Karamba doohickey I threw together to monitor the ink levels in my Epson printer.
TO MY KNOWLEDGE, THIS WILL ONLY WORK ON AN EPSON PRINTER!!!
It requires the escputil program, which comes with gimp-print. The "escputil" program must be in your path, and you must have rw access to your printer's raw device.
To install:
1) cd to your Karamba directory (e.g., /usr/share/apps/karamba) and untar the tarball.
2) Edit the ink.pl script and enter:
the number of ink colors in your printer
your raw printer device.
3) If you have a six ink printer, use ink_six.theme. If you have a four ink printer, use the normal ink.theme file.
Hope some of you find it useful.
17 years ago
*Ink Level Monitor 0.5 (16 Apr 2003)
Added support for six ink printers
*Ink Level Monitor 0.4.1 (12 APr 2003)
Fixed stupid error in .theme file
*Ink Level Monitor v0.4 (12 Apr 2003)
Initial release
17 years ago
*Ink Level Monitor 0.5 (16 Apr 2003)
Added support for six ink printers
*Ink Level Monitor 0.4.1 (12 APr 2003)
Fixed stupid error in .theme file
*Ink Level Monitor v0.4 (12 Apr 2003)
Initial release
jcphil
17 years ago
Report
Praxxus
17 years ago
2) Just running the "ink.pl" script by itself generates a set of numbers
Report
jcphil
17 years ago
Report
jcphil
17 years ago
Report
StuLTissimus
17 years ago
But this is a great idea. It really shows the capabilities of Karamba. Now, if only it stopped being eyecandy and was something like Slicker...
Report
Praxxus
17 years ago
Instead of:
my @ink = `$prog -q -i -r $raw`;
use:
my @ink = `ssh $HOST $prog -q -i -r $raw`;
Substituting the name of the remote computer for $HOST, of course. That should work.
Report