6 lines
195 B
Desktop File
6 lines
195 B
Desktop File
[Unit]
|
|
Description=Remove all printers
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=sh -c 'lpstat -p && for printer in $(lpstat -p | cut -f 2 -d " "); do lpadmin -x $printer; done || echo no printer found.'
|