-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprinters-example.plist
More file actions
55 lines (55 loc) · 1.41 KB
/
printers-example.plist
File metadata and controls
55 lines (55 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?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>printerList</key>
<array>
<dict>
<key>description</key>
<string>Main Printer</string>
<key>location</key>
<string>First Floor</string>
<key>model</key>
<string>Brother DCP-8250DN CUPS</string>
<key>ppd</key>
<string>http://your.server.com/ppd/bdcp-8250dn.gz</string>
<key>printer</key>
<string>main_printer</string>
<key>protocol</key>
<string>ipp</string>
<key>url</key>
<string>your.printserver.com</string>
</dict>
<dict>
<key>description</key>
<string>Another Printer</string>
<key>location</key>
<string>CMMN 332</string>
<key>model</key>
<string>HP LaserJet 4250</string>
<key>ppd</key>
<string>http://your.server.com/ppd/hplj.4250.gz</string>
<key>printer</key>
<string>comm_office</string>
<key>protocol</key>
<string>socket</string>
<key>url</key>
<string>192.168.2.1</string>
</dict>
<dict>
<key>description</key>
<string>Honcho's Printer</string>
<key>location</key>
<string>Bosses Office</string>
<key>model</key>
<string>HP LaserJet 4250</string>
<key>printer</key>
<string>boss_printer</string>
<key>protocol</key>
<string>lpd</string>
<key>url</key>
<string>192.168.2.101</string>
</dict>
</array>
</dict>
</plist>