Ajout fichiers de conf
This commit is contained in:
parent
12da17b88d
commit
00321c2e8a
@ -1,14 +0,0 @@
|
||||
---
|
||||
BasedOnStyle: LLVM
|
||||
AlignOperands: 'true'
|
||||
IndentWidth: '4'
|
||||
IndentWrappedFunctionNames: 'true'
|
||||
KeepEmptyLinesAtTheStartOfBlocks: 'false'
|
||||
TabWidth: '4'
|
||||
UseTab: Always
|
||||
ColumnLimit: '0'
|
||||
PointerAlignment: Left
|
||||
BreakConstructorInitializers: BeforeComma
|
||||
AccessModifierOffset: -4
|
||||
SortIncludes: 'false'
|
||||
SortUsingDeclarations: 'false'
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +0,0 @@
|
||||
[bB]in/
|
||||
.vscode/
|
24
Makefile
24
Makefile
@ -1,24 +0,0 @@
|
||||
# ---- ---- #
|
||||
|
||||
CC = gcc
|
||||
CF = -Wall -lkrb5 -lvirt -ljson-c -lcrypto -g -pedantic
|
||||
|
||||
# ---- ---- #
|
||||
|
||||
build: $(shell find . -name "*.c") $(shell find . -name "*.h")
|
||||
@mkdir -p bin
|
||||
$(CC) $(CF) -o ./bin/sandbox $(shell find . -name "*.c")
|
||||
|
||||
run: build
|
||||
./bin/sandbox
|
||||
|
||||
debug: build
|
||||
gdb -q ./bin/sandbox
|
||||
|
||||
clean:
|
||||
rm -rf ./bin
|
||||
|
||||
.PHONY: build run clean
|
||||
|
||||
# ---- ---- #
|
||||
|
28
configfiles/etc/X11/doublescreen.sh
Normal file
28
configfiles/etc/X11/doublescreen.sh
Normal file
@ -0,0 +1,28 @@
|
||||
nbscreen=$(xrandr| grep -e " connected"| wc -l)
|
||||
|
||||
#Si il y a 2 écrans
|
||||
if [ $nbscreen -eq 2 ]; then
|
||||
|
||||
#On récupere le nom de l'ecran
|
||||
screen1=$(xrandr| grep -m1 " connected"| cut -d' ' -f1)
|
||||
screen2=$(xrandr| grep -m2 " connected"| sed -n '2p'| cut -d' ' -f1)
|
||||
|
||||
#Ainsi que leur resolution maximale
|
||||
reso1=$(xrandr| grep -m1 "[ *]+"| cut -d' ' -f4)
|
||||
reso2=$(xrandr| grep -m2 "[ *]+"| sed -n '2p'| cut -d' ' -f4)
|
||||
|
||||
if [ -n $screen1 ] || [ -n $screen2 ]; then
|
||||
#Si les deux nom d'écrans ne sont pas vide, on met leur meilleur résolution
|
||||
xrandr --output $screen1 --mode $reso1
|
||||
xrandr --output $screen2 --mode $reso2
|
||||
|
||||
#Et on met l'écran principal a gauche de l'ecran plat phillips
|
||||
if [ $reso1 == "1366x768" ]; then
|
||||
xrandr --output $screen2 --left-of $screen1
|
||||
else
|
||||
xrandr --output $screen1 --left-of $screen2
|
||||
fi
|
||||
|
||||
fi
|
||||
fi
|
||||
|
18
configfiles/etc/X11/xorg.conf
Normal file
18
configfiles/etc/X11/xorg.conf
Normal file
@ -0,0 +1,18 @@
|
||||
# Pour clavier azerty
|
||||
Section "InputClass"
|
||||
Identifier "Keyboard Defaults"
|
||||
MatchIsKeyboard "yes"
|
||||
Option "XkbLayout" "fr"
|
||||
EndSection
|
||||
|
||||
# Pour la résolution du 22"
|
||||
Section "Screen"
|
||||
Identifier "Screen0"
|
||||
Device "Device0"
|
||||
Monitor "Monitor0"
|
||||
DefaultDepth 24
|
||||
SubSectionSub "Display"
|
||||
Depth 24
|
||||
Modes "1680x1050" "1280x1024" "1152x864" "1024x768" "800x600"
|
||||
EndSubSection
|
||||
EndSection
|
6
configfiles/etc/X11/xorg.conf.d/10-keyboard-layout.conf
Normal file
6
configfiles/etc/X11/xorg.conf.d/10-keyboard-layout.conf
Normal file
@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "keyboard Layout"
|
||||
MatchIsKeyboard "on"
|
||||
Option "XkbLayout" "fr, de, se"
|
||||
Option "XkbOptions" "grp:shifts_toggle"
|
||||
EndSection
|
3
configfiles/etc/X11/xorg.conf.d/20-radeon.conf
Normal file
3
configfiles/etc/X11/xorg.conf.d/20-radeon.conf
Normal file
@ -0,0 +1,3 @@
|
||||
Section \"DRI\"
|
||||
Mode 0666
|
||||
EndSection
|
0
configfiles/etc/cups/classes.conf
Normal file
0
configfiles/etc/cups/classes.conf
Normal file
2
configfiles/etc/cups/client.conf
Normal file
2
configfiles/etc/cups/client.conf
Normal file
@ -0,0 +1,2 @@
|
||||
# see 'man client.conf'
|
||||
ServerName /var/run/cups/cups.sock # alternative: ServerName hostname-or-ip-address[:port] of a remote server
|
26
configfiles/etc/cups/cups-browsed.conf
Normal file
26
configfiles/etc/cups/cups-browsed.conf
Normal file
@ -0,0 +1,26 @@
|
||||
# Which protocols will we use to discover printers on the network?
|
||||
# Can use DNSSD and/or CUPS, or 'none' for neither.
|
||||
BrowseRemoteProtocols DNSSD,CUPS
|
||||
|
||||
# Which protocols will we use to broadcast shared local printers to the network?
|
||||
# Can use DNSSD and/or CUPS, or 'none' for neither.
|
||||
# Only CUPS is actually supported, as DNSSD is done by CUPS itself (we ignore
|
||||
# DNSSD in this directive).
|
||||
# BrowseLocalProtocols none
|
||||
|
||||
# Settings of this directive apply to both BrowseRemoteProtocols and
|
||||
# BrowseLocalProtocols.
|
||||
# Can use DNSSD and/or CUPS, or 'none' for neither.
|
||||
# BrowseProtocols none
|
||||
|
||||
# Only browse remote printers from selected servers
|
||||
# BrowseAllow cups.example.com
|
||||
# BrowseAllow 192.168.1.12
|
||||
# BrowseAllow 192.168.1.0/24
|
||||
# BrowseAllow 192.168.1.0/255.255.255.0
|
||||
|
||||
# Use BrowsePoll to poll a particular CUPS server
|
||||
# BrowsePoll cups.example.com
|
||||
# BrowsePoll cups.example.com:631
|
||||
|
||||
# Unknown directives are ignored, also unknown values.
|
98
configfiles/etc/cups/cups-files.conf
Normal file
98
configfiles/etc/cups/cups-files.conf
Normal file
@ -0,0 +1,98 @@
|
||||
#
|
||||
# "$Id: cups-files.conf.in 10765 2012-12-13 20:36:17Z mike $"
|
||||
#
|
||||
# Sample file/directory/user/group configuration file for the CUPS scheduler.
|
||||
# See "man cups-files.conf" for a complete description of this file.
|
||||
#
|
||||
|
||||
# List of events that are considered fatal errors for the scheduler...
|
||||
#FatalErrors config
|
||||
|
||||
# Default user and group for filters/backends/helper programs; this cannot be
|
||||
# any user or group that resolves to ID 0 for security reasons...
|
||||
#User daemon
|
||||
#Group lp
|
||||
|
||||
# Administrator user group, used to match @SYSTEM in cupsd.conf policy rules...
|
||||
SystemGroup sys root
|
||||
|
||||
|
||||
# User that is substituted for unauthenticated (remote) root accesses...
|
||||
#RemoteRoot remroot
|
||||
|
||||
# Do we allow file: device URIs other than to /dev/null?
|
||||
#FileDevice No
|
||||
|
||||
# Permissions for configuration and log files...
|
||||
#ConfigFilePerm 0640
|
||||
#LogFilePerm 0644
|
||||
|
||||
# Location of the file logging all access to the scheduler; may be the name
|
||||
# "syslog". If not an absolute path, the value of ServerRoot is used as the
|
||||
# root directory. Also see the "AccessLogLevel" directive in cupsd.conf.
|
||||
AccessLog /var/log/cups/access_log
|
||||
|
||||
# Location of cache files used by the scheduler...
|
||||
#CacheDir /var/cache/cups
|
||||
|
||||
# Location of data files used by the scheduler...
|
||||
#DataDir /usr/share/cups
|
||||
|
||||
# Location of the static web content served by the scheduler...
|
||||
#DocumentRoot /usr/share/cups/doc
|
||||
|
||||
# Location of the file logging all messages produced by the scheduler and any
|
||||
# helper programs; may be the name "syslog". If not an absolute path, the value
|
||||
# of ServerRoot is used as the root directory. Also see the "LogLevel"
|
||||
# directive in cupsd.conf.
|
||||
ErrorLog /var/log/cups/error_log
|
||||
|
||||
# Location of fonts used by older print filters...
|
||||
#FontPath /usr/share/cups/fonts
|
||||
|
||||
# Location of LPD configuration
|
||||
#LPDConfigFile xinetd:///etc/xinetd.d/cups-lpd
|
||||
|
||||
# Location of the file logging all pages printed by the scheduler and any
|
||||
# helper programs; may be the name "syslog". If not an absolute path, the value
|
||||
# of ServerRoot is used as the root directory. Also see the "PageLogFormat"
|
||||
# directive in cupsd.conf.
|
||||
PageLog /var/log/cups/page_log
|
||||
|
||||
# Location of the file listing all of the local printers...
|
||||
#Printcap /etc/printcap
|
||||
|
||||
# Format of the Printcap file...
|
||||
#PrintcapFormat bsd
|
||||
#PrintcapFormat plist
|
||||
#PrintcapFormat solaris
|
||||
|
||||
# Location of all spool files...
|
||||
#RequestRoot /var/spool/cups
|
||||
|
||||
# Location of helper programs...
|
||||
#ServerBin /usr/lib/cups
|
||||
|
||||
# SSL/TLS certificate for the scheduler...
|
||||
#ServerCertificate
|
||||
|
||||
# SSL/TLS private key for the scheduler...
|
||||
#ServerKey
|
||||
|
||||
# Location of other configuration files...
|
||||
#ServerRoot /etc/cups
|
||||
|
||||
# Location of Samba configuration file...
|
||||
#SMBConfigFile
|
||||
|
||||
# Location of scheduler state files...
|
||||
#StateDir /var/run/cups
|
||||
|
||||
# Location of scheduler/helper temporary files. This directory is emptied on
|
||||
# scheduler startup and cannot be one of the standard (public) temporary
|
||||
# directory locations for security reasons...
|
||||
#TempDir /var/spool/cups/tmp
|
||||
|
||||
#
|
||||
# End of "$Id: cups-files.conf.in 10765 2012-12-13 20:36:17Z mike $".
|
||||
#
|
93
configfiles/etc/cups/cups-files.conf.default
Normal file
93
configfiles/etc/cups/cups-files.conf.default
Normal file
@ -0,0 +1,93 @@
|
||||
#
|
||||
# File/directory/user/group configuration file for the CUPS scheduler.
|
||||
# See "man cups-files.conf" for a complete description of this file.
|
||||
#
|
||||
|
||||
# List of events that are considered fatal errors for the scheduler...
|
||||
#FatalErrors config
|
||||
|
||||
# Do we call fsync() after writing configuration or status files?
|
||||
#SyncOnClose No
|
||||
|
||||
# Default user and group for filters/backends/helper programs; this cannot be
|
||||
# any user or group that resolves to ID 0 for security reasons...
|
||||
#User daemon
|
||||
#Group lp
|
||||
|
||||
# Administrator user group, used to match @SYSTEM in cupsd.conf policy rules...
|
||||
# This cannot contain the Group value for security reasons...
|
||||
SystemGroup sys root
|
||||
|
||||
|
||||
# User that is substituted for unauthenticated (remote) root accesses...
|
||||
#RemoteRoot remroot
|
||||
|
||||
# Do we allow file: device URIs other than to /dev/null?
|
||||
#FileDevice No
|
||||
|
||||
# Permissions for configuration and log files...
|
||||
#ConfigFilePerm 0640
|
||||
#LogFilePerm 0644
|
||||
|
||||
# Location of the file logging all access to the scheduler; may be the name
|
||||
# "syslog". If not an absolute path, the value of ServerRoot is used as the
|
||||
# root directory. Also see the "AccessLogLevel" directive in cupsd.conf.
|
||||
AccessLog /var/log/cups/access_log
|
||||
|
||||
# Location of cache files used by the scheduler...
|
||||
#CacheDir /var/cache/cups
|
||||
|
||||
# Location of data files used by the scheduler...
|
||||
#DataDir /usr/share/cups
|
||||
|
||||
# Location of the static web content served by the scheduler...
|
||||
#DocumentRoot /usr/share/cups/doc
|
||||
|
||||
# Location of the file logging all messages produced by the scheduler and any
|
||||
# helper programs; may be the name "syslog". If not an absolute path, the value
|
||||
# of ServerRoot is used as the root directory. Also see the "LogLevel"
|
||||
# directive in cupsd.conf.
|
||||
ErrorLog /var/log/cups/error_log
|
||||
|
||||
# Location of fonts used by older print filters...
|
||||
#FontPath /usr/share/cups/fonts
|
||||
|
||||
# Location of LPD configuration
|
||||
#LPDConfigFile xinetd:///etc/xinetd.d/cups-lpd
|
||||
|
||||
# Location of the file logging all pages printed by the scheduler and any
|
||||
# helper programs; may be the name "syslog". If not an absolute path, the value
|
||||
# of ServerRoot is used as the root directory. Also see the "PageLogFormat"
|
||||
# directive in cupsd.conf.
|
||||
PageLog /var/log/cups/page_log
|
||||
|
||||
# Location of the file listing all of the local printers...
|
||||
#Printcap /etc/printcap
|
||||
|
||||
# Format of the Printcap file...
|
||||
#PrintcapFormat bsd
|
||||
#PrintcapFormat plist
|
||||
#PrintcapFormat solaris
|
||||
|
||||
# Location of all spool files...
|
||||
#RequestRoot /var/spool/cups
|
||||
|
||||
# Location of helper programs...
|
||||
#ServerBin /usr/lib/cups
|
||||
|
||||
# SSL/TLS keychain for the scheduler...
|
||||
#ServerKeychain ssl
|
||||
|
||||
# Location of other configuration files...
|
||||
#ServerRoot /etc/cups
|
||||
|
||||
# Location of Samba configuration file...
|
||||
#SMBConfigFile
|
||||
|
||||
# Location of scheduler state files...
|
||||
#StateDir /run/cups
|
||||
|
||||
# Location of scheduler/helper temporary files. This directory is emptied on
|
||||
# scheduler startup and cannot be one of the standard (public) temporary
|
||||
# directory locations for security reasons...
|
||||
#TempDir /var/spool/cups/tmp
|
287
configfiles/etc/cups/cups-pdf.conf
Normal file
287
configfiles/etc/cups/cups-pdf.conf
Normal file
@ -0,0 +1,287 @@
|
||||
# cups-pdf.conf -- CUPS Backend Configuration (version 2.6.1, 2011-10-04)
|
||||
# 18.09.2005, Volker C. Behr
|
||||
# Experimentelle Physik V, Universitaet Wuerzburg
|
||||
# behr@physik.uni-wuerzburg.de
|
||||
# http://www.cups-pdf.de
|
||||
#
|
||||
#
|
||||
# This code may be freely distributed as long as this header
|
||||
# is preserved. Changes to the code should be clearly indicated.
|
||||
#
|
||||
# This code is distributed under the GPL.
|
||||
# (http://www.gnu.org/copyleft/gpl.html)
|
||||
#
|
||||
# For more detailed licensing information see cups-pdf.c in the
|
||||
# corresponding version number.
|
||||
|
||||
###########################################################################
|
||||
# #
|
||||
# This is the configuration file for CUPS-PDF. Values that are not set in #
|
||||
# here will use the defaults. Changes take effect immediately without the #
|
||||
# need for restarting any services. #
|
||||
# #
|
||||
# Take care not to add whitespaces at the end of a line! #
|
||||
# #
|
||||
###########################################################################
|
||||
|
||||
|
||||
###########################################################################
|
||||
# #
|
||||
# Path Settings #
|
||||
# #
|
||||
###########################################################################
|
||||
|
||||
### Key: Out
|
||||
## CUPS-PDF output directory
|
||||
## special qualifiers:
|
||||
## ${HOME} will be expanded to the user's home directory
|
||||
## ${USER} will be expanded to the user name
|
||||
## in case it is an NFS export make sure it is exported without
|
||||
## root_squash!
|
||||
### Default: /var/spool/cups-pdf/${USER}
|
||||
|
||||
#Out /var/spool/cups-pdf/${USER}
|
||||
|
||||
### Key: AnonDirName
|
||||
## ABSOLUTE path for anonymously created PDF files
|
||||
## if anonymous access is disabled this setting has no effect
|
||||
### Default: /var/spool/cups-pdf/ANONYMOUS
|
||||
|
||||
#AnonDirName /var/spool/cups-pdf/ANONYMOUS
|
||||
|
||||
### Key: Spool
|
||||
## CUPS-PDF spool directory - make sure there is no user 'SPOOL' on your
|
||||
## system or change the path
|
||||
### Default: /var/spool/cups-pdf/SPOOL
|
||||
|
||||
#Spool /var/spool/cups-pdf/SPOOL
|
||||
|
||||
|
||||
###########################################################################
|
||||
# #
|
||||
# Filename Settings #
|
||||
# #
|
||||
###########################################################################
|
||||
|
||||
### Key: Truncate
|
||||
## truncate long filenames to a maximum of <Truncate> characters
|
||||
## this does not consider the full path to the output but only the filename
|
||||
## without the .pdf-extension or a job-id prefix (see 'Label')
|
||||
## the minimal value is 8
|
||||
### Default: 64
|
||||
|
||||
#Truncate 64
|
||||
|
||||
### Key: Cut
|
||||
## removing file name extensions before appending .pdf to output
|
||||
## extensions will only be removed if _both_ the following criteria are met:
|
||||
## - the extension (w/o the dot) is not longer than <Cut> characters
|
||||
## - the remaining filename has a minimal length of 1 character
|
||||
## set Cut to -1 in order to disable cutting
|
||||
## recommended values: pure UNIX environment : -1
|
||||
## mixed environments : 3
|
||||
### Default: 3
|
||||
|
||||
#Cut 3
|
||||
|
||||
### Key: Label
|
||||
## label all jobs with a unique job-id in order to avoid overwriting old
|
||||
## files in case new ones with identical names are created; always true for
|
||||
## untitled documents
|
||||
## 0: label untitled documents only
|
||||
## 1: label all documents with a preceeding "job_#-"
|
||||
## 2: label all documents with a tailing "-job_#"
|
||||
### Default: 0
|
||||
|
||||
#Label 0
|
||||
|
||||
### Key: TitlePref
|
||||
## where to look first for a title when creating the output filename
|
||||
## (title in PS file or title on commandline):
|
||||
## 0: prefer title from %Title statement in the PS file
|
||||
## 1: prefer title passed via commandline
|
||||
### Default: 0
|
||||
|
||||
#TitlePref 0
|
||||
|
||||
|
||||
###########################################################################
|
||||
# #
|
||||
# User Settings #
|
||||
# #
|
||||
###########################################################################
|
||||
|
||||
### Key: AnonUser
|
||||
## uid for anonymous PDF creation (this might be a security issue)
|
||||
## this setting has no influence on AnonDirName (see there)
|
||||
## set this to an empty value to disable anonymous
|
||||
### Default: nobody
|
||||
|
||||
#AnonUser nobody
|
||||
|
||||
### Key: LowerCase
|
||||
## This options allows to check user names given to CUPS-PDF additionally
|
||||
## against their lower case variants. This is necessary since in some
|
||||
## Windows environments only upper case user names are passed. Usually UNIX
|
||||
## user names are all lower case and it is save to use this option
|
||||
## but be aware that it can lead to mis-identifications in case
|
||||
## you have user names that differ only in upper/lower case.
|
||||
## check only against user name as passed to CUPS : 0
|
||||
## check additionally against lower case user name : 1
|
||||
### Default: 1
|
||||
|
||||
#LowerCase 1
|
||||
|
||||
### Key: UserPrefix
|
||||
## some installations require a domain prefix added to the user name
|
||||
## leave empty for no prefix
|
||||
### Default: <empty>
|
||||
|
||||
#UserPrefix
|
||||
|
||||
### Key: DirPrefix
|
||||
## if a prefix was defined above this switch toggels whether to include
|
||||
## the prefix in the output directory's name (if not $HOME) or not
|
||||
## 0: do not include, 1: include
|
||||
### Default: 0
|
||||
|
||||
#DirPrefix 0
|
||||
|
||||
### Key: RemovePrefix
|
||||
## some installation pass usernames with a prefix (usually a domain name)
|
||||
## if you do not want this prefix to be used by the ${USER} variable for
|
||||
## output directories put the part which is to be cut here
|
||||
### Default: <empty>
|
||||
|
||||
#RemovePrefix
|
||||
|
||||
|
||||
###########################################################################
|
||||
# #
|
||||
# Security Settings #
|
||||
# #
|
||||
###########################################################################
|
||||
|
||||
### Key: AnonUMask
|
||||
## umask for anonymous output
|
||||
## these are the _inverse_ permissions to be granted
|
||||
### Default: 0000
|
||||
|
||||
#AnonUMask 0000
|
||||
|
||||
### Key: UserUMask
|
||||
## umask for user output of known users
|
||||
## changing this can introduce security leaks if confidential
|
||||
## information is processed!
|
||||
### Default: 0077
|
||||
|
||||
#UserUMask 0077
|
||||
|
||||
### Key: Grp
|
||||
## group cups-pdf is supposed to run as - this will also be the gid for all
|
||||
## created directories and log files
|
||||
### Default: lp
|
||||
|
||||
#Grp lp
|
||||
|
||||
|
||||
###########################################################################
|
||||
# #
|
||||
# Log Settings #
|
||||
# #
|
||||
###########################################################################
|
||||
|
||||
### Key: Log
|
||||
## CUPS-PDF log directory
|
||||
## set this to an empty value to disable all logging
|
||||
### Default: /var/log/cups
|
||||
|
||||
#Log /var/log/cups
|
||||
|
||||
### Key: LogType
|
||||
## log-mode
|
||||
## 1: errors
|
||||
## 2: status (i.e. activity)
|
||||
## 4: debug - this will generate a lot of log-output!
|
||||
## add up values to combine options, i.e. 7 is full logging
|
||||
## if logging is disabled these setting have no effect
|
||||
### Default: 3
|
||||
|
||||
#LogType 3
|
||||
|
||||
|
||||
###########################################################################
|
||||
# #
|
||||
# PDF Conversion Settings #
|
||||
# #
|
||||
###########################################################################
|
||||
|
||||
### Key: GhostScript
|
||||
## location of GhostScript binary (gs)
|
||||
## MacOSX: for using pstopdf (recommended) set this to /usr/bin/pstopdf
|
||||
## or its proper location on your system
|
||||
### Default: /usr/bin/gs
|
||||
|
||||
#GhostScript /usr/bin/gs
|
||||
|
||||
### Key: GSTmp
|
||||
## location of temporary files during GhostScript operation
|
||||
## this must be user-writable like /var/tmp or /tmp !
|
||||
### Default: /var/tmp
|
||||
|
||||
#GSTmp /var/tmp
|
||||
|
||||
### Key: GSCall
|
||||
## command line for calling GhostScript (!!! DO NOT USE NEWLINES !!!)
|
||||
## MacOSX: for using pstopdf set this to %s %s -o %s %s
|
||||
### Default: %s -q -dCompatibilityLevel=%s -dNOPAUSE -dBATCH -dSAFER -sDEVICE=pdfwrite -sOutputFile="%s" -dAutoRotatePages=/PageByPage -dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode -dPDFSETTINGS=/prepress -c .setpdfwrite -f %s
|
||||
|
||||
#GSCall %s -q -dCompatibilityLevel=%s -dNOPAUSE -dBATCH -dSAFER -sDEVICE=pdfwrite -sOutputFile="%s" -dAutoRotatePages=/PageByPage -dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode -dPDFSETTINGS=/prepress -c .setpdfwrite -f %s
|
||||
|
||||
### Key: PDFVer
|
||||
## PDF version to be created - can be "1.5", "1.4", "1.3" or "1.2"
|
||||
## MacOSX: for using pstopdf set this to an empty value
|
||||
### Default: 1.4
|
||||
|
||||
#PDFVer 1.4
|
||||
|
||||
### Key: PostProcessing
|
||||
## postprocessing script that will be called after the creation of the PDF
|
||||
## as arguments the filename of the PDF, the username as determined by
|
||||
## CUPS-PDF and the one as given to CUPS-PDF will be passed
|
||||
## the script will be called with user privileges
|
||||
## set this to an empty value to use no postprocessing
|
||||
### Default: <empty>
|
||||
|
||||
#PostProcessing
|
||||
|
||||
|
||||
###########################################################################
|
||||
# #
|
||||
# Experimental Settings #
|
||||
# These settings activate experimental options. If you decide to use #
|
||||
# them I would appreciate any feedback - including an 'ok' if they #
|
||||
# work as expected - so I can eventually put them into the non- #
|
||||
# experimental sections. #
|
||||
# #
|
||||
###########################################################################
|
||||
|
||||
### Key: DecodeHexStrings
|
||||
## this option will try to decode hex strings in the title to allow
|
||||
## internationalized titles
|
||||
## (have a look at contrib/pstitleconv for a suitable filter for data
|
||||
## from Windows clients)
|
||||
## 0: disable, 1: enable
|
||||
### Default: 0
|
||||
|
||||
#DecodeHexStrings 0
|
||||
|
||||
### Key: FixNewlines
|
||||
## this option will try to fix various unusal line delimiters (e.g.
|
||||
## form feeds)
|
||||
## especially useful when using non-Linux-generated files
|
||||
## 0: disable, 1: enable
|
||||
### Default: 0
|
||||
|
||||
#FixNewlines 0
|
||||
|
134
configfiles/etc/cups/cupsd.conf
Normal file
134
configfiles/etc/cups/cupsd.conf
Normal file
@ -0,0 +1,134 @@
|
||||
#
|
||||
# "$Id: cupsd.conf.in 10710 2012-11-26 18:26:01Z mike $"
|
||||
#
|
||||
# Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a
|
||||
# complete description of this file.
|
||||
#
|
||||
|
||||
# Log general information in error_log - change "warn" to "debug"
|
||||
# for troubleshooting...
|
||||
LogLevel warn
|
||||
|
||||
# Only listen for connections from the local machine.
|
||||
Listen localhost:631
|
||||
Listen /var/run/cups/cups.sock
|
||||
|
||||
# Show shared printers on the local network.
|
||||
Browsing On
|
||||
BrowseLocalProtocols dnssd
|
||||
|
||||
# Default authentication type, when authentication is required...
|
||||
DefaultAuthType Basic
|
||||
|
||||
# Web interface setting...
|
||||
WebInterface Yes
|
||||
|
||||
# Restrict access to the server...
|
||||
<Location />
|
||||
Order allow,deny
|
||||
</Location>
|
||||
|
||||
# Restrict access to the admin pages...
|
||||
<Location /admin>
|
||||
Order allow,deny
|
||||
</Location>
|
||||
|
||||
# Restrict access to configuration files...
|
||||
<Location /admin/conf>
|
||||
AuthType Default
|
||||
Require user @SYSTEM
|
||||
Order allow,deny
|
||||
</Location>
|
||||
|
||||
# Set the default printer/job policies...
|
||||
<Policy default>
|
||||
# Job/subscription privacy...
|
||||
JobPrivateAccess default
|
||||
JobPrivateValues default
|
||||
SubscriptionPrivateAccess default
|
||||
SubscriptionPrivateValues default
|
||||
|
||||
# Job-related operations must be done by the owner or an administrator...
|
||||
<Limit Create-Job Print-Job Print-URI Validate-Job>
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
<Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
|
||||
Require user @OWNER @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# All administration operations require an administrator to authenticate...
|
||||
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
|
||||
AuthType Default
|
||||
Require user @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# All printer operations require a printer operator to authenticate...
|
||||
<Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
|
||||
AuthType Default
|
||||
Require user @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# Only the owner or an administrator can cancel or authenticate a job...
|
||||
<Limit Cancel-Job CUPS-Authenticate-Job>
|
||||
Require user @OWNER @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
<Limit All>
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
</Policy>
|
||||
|
||||
# Set the authenticated printer/job policies...
|
||||
<Policy authenticated>
|
||||
# Job/subscription privacy...
|
||||
JobPrivateAccess default
|
||||
JobPrivateValues default
|
||||
SubscriptionPrivateAccess default
|
||||
SubscriptionPrivateValues default
|
||||
|
||||
# Job-related operations must be done by the owner or an administrator...
|
||||
<Limit Create-Job Print-Job Print-URI Validate-Job>
|
||||
AuthType Default
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
<Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
|
||||
AuthType Default
|
||||
Require user @OWNER @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# All administration operations require an administrator to authenticate...
|
||||
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
|
||||
AuthType Default
|
||||
Require user @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# All printer operations require a printer operator to authenticate...
|
||||
<Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
|
||||
AuthType Default
|
||||
Require user @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# Only the owner or an administrator can cancel or authenticate a job...
|
||||
<Limit Cancel-Job CUPS-Authenticate-Job>
|
||||
AuthType Default
|
||||
Require user @OWNER @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
<Limit All>
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
</Policy>
|
||||
|
||||
#
|
||||
# End of "$Id: cupsd.conf.in 10710 2012-11-26 18:26:01Z mike $".
|
||||
#
|
134
configfiles/etc/cups/cupsd.conf.default
Normal file
134
configfiles/etc/cups/cupsd.conf.default
Normal file
@ -0,0 +1,134 @@
|
||||
#
|
||||
# "$Id: cupsd.conf.in 10710 2012-11-26 18:26:01Z mike $"
|
||||
#
|
||||
# Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a
|
||||
# complete description of this file.
|
||||
#
|
||||
|
||||
# Log general information in error_log - change "warn" to "debug"
|
||||
# for troubleshooting...
|
||||
LogLevel warn
|
||||
|
||||
# Only listen for connections from the local machine.
|
||||
Listen localhost:631
|
||||
Listen /var/run/cups/cups.sock
|
||||
|
||||
# Show shared printers on the local network.
|
||||
Browsing On
|
||||
BrowseLocalProtocols dnssd
|
||||
|
||||
# Default authentication type, when authentication is required...
|
||||
DefaultAuthType Basic
|
||||
|
||||
# Web interface setting...
|
||||
WebInterface Yes
|
||||
|
||||
# Restrict access to the server...
|
||||
<Location />
|
||||
Order allow,deny
|
||||
</Location>
|
||||
|
||||
# Restrict access to the admin pages...
|
||||
<Location /admin>
|
||||
Order allow,deny
|
||||
</Location>
|
||||
|
||||
# Restrict access to configuration files...
|
||||
<Location /admin/conf>
|
||||
AuthType Default
|
||||
Require user @SYSTEM
|
||||
Order allow,deny
|
||||
</Location>
|
||||
|
||||
# Set the default printer/job policies...
|
||||
<Policy default>
|
||||
# Job/subscription privacy...
|
||||
JobPrivateAccess default
|
||||
JobPrivateValues default
|
||||
SubscriptionPrivateAccess default
|
||||
SubscriptionPrivateValues default
|
||||
|
||||
# Job-related operations must be done by the owner or an administrator...
|
||||
<Limit Create-Job Print-Job Print-URI Validate-Job>
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
<Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
|
||||
Require user @OWNER @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# All administration operations require an administrator to authenticate...
|
||||
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
|
||||
AuthType Default
|
||||
Require user @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# All printer operations require a printer operator to authenticate...
|
||||
<Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
|
||||
AuthType Default
|
||||
Require user @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# Only the owner or an administrator can cancel or authenticate a job...
|
||||
<Limit Cancel-Job CUPS-Authenticate-Job>
|
||||
Require user @OWNER @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
<Limit All>
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
</Policy>
|
||||
|
||||
# Set the authenticated printer/job policies...
|
||||
<Policy authenticated>
|
||||
# Job/subscription privacy...
|
||||
JobPrivateAccess default
|
||||
JobPrivateValues default
|
||||
SubscriptionPrivateAccess default
|
||||
SubscriptionPrivateValues default
|
||||
|
||||
# Job-related operations must be done by the owner or an administrator...
|
||||
<Limit Create-Job Print-Job Print-URI Validate-Job>
|
||||
AuthType Default
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
<Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
|
||||
AuthType Default
|
||||
Require user @OWNER @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# All administration operations require an administrator to authenticate...
|
||||
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
|
||||
AuthType Default
|
||||
Require user @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# All printer operations require a printer operator to authenticate...
|
||||
<Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
|
||||
AuthType Default
|
||||
Require user @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
# Only the owner or an administrator can cancel or authenticate a job...
|
||||
<Limit Cancel-Job CUPS-Authenticate-Job>
|
||||
AuthType Default
|
||||
Require user @OWNER @SYSTEM
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
|
||||
<Limit All>
|
||||
Order deny,allow
|
||||
</Limit>
|
||||
</Policy>
|
||||
|
||||
#
|
||||
# End of "$Id: cupsd.conf.in 10710 2012-11-26 18:26:01Z mike $".
|
||||
#
|
30
configfiles/etc/cups/gstoraster.convs
Normal file
30
configfiles/etc/cups/gstoraster.convs
Normal file
@ -0,0 +1,30 @@
|
||||
# Copyright (c) 2008, Till Kamppeter
|
||||
# Copyright (c) 2011, Richard Hughes
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to
|
||||
# permit persons to whom the Software is furnished to do so, subject to
|
||||
# the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included
|
||||
# in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
#
|
||||
# MIT Open Source License - http://www.opensource.org/
|
||||
#
|
||||
# $Id: pdftoraster.convs 8803 2008-06-24 14:16:29Z till $
|
||||
#
|
||||
# CUPS file conversion rules for gstoraster filter
|
||||
|
||||
application/vnd.cups-pdf application/vnd.cups-raster 66 gstoraster
|
||||
application/vnd.cups-postscript application/vnd.cups-raster 100 gstoraster
|
2256
configfiles/etc/cups/ppd/Salle221.ppd
Normal file
2256
configfiles/etc/cups/ppd/Salle221.ppd
Normal file
File diff suppressed because it is too large
Load Diff
237
configfiles/etc/cups/ppd/Salle221.ppd.O
Normal file
237
configfiles/etc/cups/ppd/Salle221.ppd.O
Normal file
@ -0,0 +1,237 @@
|
||||
*PPD-Adobe: "4.3"
|
||||
*%%%% PPD file for HP LaserJet p2015n Series with CUPS.
|
||||
*%%%% Created by the CUPS PPD Compiler CUPS v1.6.2.
|
||||
*% (c) 2008 Copyright Hewlett-Packard Development Company, LP
|
||||
*FormatVersion: "4.3"
|
||||
*FileVersion: "3.13.5"
|
||||
*LanguageVersion: English
|
||||
*LanguageEncoding: ISOLatin1
|
||||
*PCFileName: "hp-laserjet_p2015n_series.ppd"
|
||||
*Product: "(HP LaserJet p2015n Printer)"
|
||||
*Manufacturer: "HP"
|
||||
*ModelName: "HP LaserJet p2015n Series"
|
||||
*ShortNickName: "HP LaserJet p2015n Series"
|
||||
*NickName: "HP LaserJet p2015n Series, hpcups 3.13.5"
|
||||
*PSVersion: "(3010.000) 0"
|
||||
*LanguageLevel: "3"
|
||||
*ColorDevice: True
|
||||
*DefaultColorSpace: RGB
|
||||
*FileSystem: False
|
||||
*Throughput: "1"
|
||||
*LandscapeOrientation: Plus90
|
||||
*TTRasterizer: Type42
|
||||
*% Driver-defined attributes...
|
||||
*RequiresPageRegion All: True
|
||||
*cupsEvenDuplex: True
|
||||
*hpPrinterLanguage: "ljmono"
|
||||
*cupsModelName: "HP LaserJet"
|
||||
*1284DeviceID: "MFG:HP;MDL:hp laserjet p2015n series;DES:hp laserjet p2015n series;"
|
||||
*cupsVersion: 1.6
|
||||
*cupsModelNumber: 0
|
||||
*cupsManualCopies: True
|
||||
*cupsFilter: "application/vnd.cups-raster 0 hpcups"
|
||||
*cupsLanguages: "en"
|
||||
*OpenUI *PageSize/Media Size: PickOne
|
||||
*OrderDependency: 10 AnySetup *PageSize
|
||||
*DefaultPageSize: A4
|
||||
*PageSize Card3x5/Index Card 3x5in: "<</cupsInteger0 78/PageSize [216 360]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Hagaki/Hagaki 100x148mm: "<</cupsInteger0 71/PageSize[284 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Photo4x6/Photo 4x6in: "<</cupsInteger0 74/PageSize[288 432]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A6/A6 105x148mm: "<</cupsInteger0 73/PageSize[297.36 419.76]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Photo5x7/Photo 5x7in: "<</cupsInteger0 122/PageSize[360 504]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Card5x8/Index Card 5x8in: "<</cupsInteger0 75/PageSize[360 576]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Oufuku/Oufuku-Hagaki 148x200mm: "<</cupsInteger0 72/PageSize[567 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A5/A5 148x210mm: "<</cupsInteger0 25/PageSize[419.76 595.44]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize B5/B5 176x250mm: "<</cupsInteger0 65/PageSize[498.96 708.48]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize JB5/JB5 182x257mm: "<</cupsInteger0 45/PageSize[516.24 728.64]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Executive/Executive 7.25x10.5in: "<</cupsInteger0 1/PageSize[522 756]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize 16k/16k 7.75x10.75in: "<</cupsInteger0 101/PageSize[558 774]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Letter/Letter 8.5x11in: "<</cupsInteger0 2/PageSize[612 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A4/A4 210x297mm: "<</cupsInteger0 26/PageSize[595.44 841.68]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize FLSA/American Foolscap 8.5x13in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Legal/Legal 8.5x14in: "<</cupsInteger0 3/PageSize[612 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvA2/A2 Envelope 4.37x5.75in: "<</cupsInteger0 109/PageSize[314.64 414]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvC6/C6 Envelope 114x162mm: "<</cupsInteger0 92/PageSize[323.28 459.36]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvChou4/#4 Japanese Envelope 90x205mm: "<</cupsInteger0 111/PageSize[254.88 581.04]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvMonarch/Monarch Envelope 3.875x7.5in: "<</cupsInteger0 80/PageSize[279 540]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvDL/DL Envelope 110x220mm: "<</cupsInteger0 90/PageSize[311.76 623.52]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Env10/#10 Envelope 4.12x9.5in: "<</cupsInteger0 81/PageSize[297 684]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvChou3/#3 Japanese Envelope 120x235mm: "<</cupsInteger0 110/PageSize[339.84 666]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvC5/C5 Envelope 162x229mm: "<</cupsInteger0 91/PageSize[459 649]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvB5/B5 Envelope 176x250mm: "<</cupsInteger0 100/PageSize[499 709]/ImagingBBox null>>setpagedevice"
|
||||
*CloseUI: *PageSize
|
||||
*OpenUI *PageRegion/Media Size: PickOne
|
||||
*OrderDependency: 10 AnySetup *PageRegion
|
||||
*DefaultPageRegion: A4
|
||||
*PageRegion Card3x5/Index Card 3x5in: "<</cupsInteger0 78/PageSize[216 360]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Hagaki/Hagaki 100x148mm: "<</cupsInteger0 71/PageSize[284 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Photo4x6/Photo 4x6in: "<</cupsInteger0 74/PageSize[288 432]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A6/A6 105x148mm: "<</cupsInteger0 73/PageSize[297.36 419.76]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Photo5x7/Photo 5x7in: "<</cupsInteger0 122/PageSize[360 504]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Card5x8/Index Card 5x8in: "<</cupsInteger0 75/PageSize[360 576]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Oufuku/Oufuku-Hagaki 148x200mm: "<</cupsInteger0 72/PageSize[567 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A5/A5 148x210mm: "<</cupsInteger0 25/PageSize[419.76 595.44]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion B5/B5 176x250mm: "<</cupsInteger0 65/PageSize[498.96 708.48]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion JB5/JB5 182x257mm: "<</cupsInteger0 45/PageSize [516.24 728.64]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Executive/Executive 7.25x10.5in: "<</cupsInteger0 1/PageSize[522 756]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion 16k/16k 7.75x10.75in: "<</cupsInteger0 101/PageSize[558 774]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Letter/Letter 8.5x11in: "<</cupsInteger0 2/PageSize[612 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A4/A4 210x297mm: "<</cupsInteger0 26/PageSize[595.44 841.68]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion FLSA/American Foolscap 8.5x13in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Legal/Legal 8.5x14in: "<</cupsInteger0 3/PageSize[612 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvA2/A2 Envelope 4.37x5.75in: "<</cupsInteger0 109/PageSize[314.64 414]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvC6/C6 Envelope 114x162mm: "<</cupsInteger0 92/PageSize[323.28 459.36]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvChou4/#4 Japanese Envelope 90x205mm: "<</cupsInteger0 111/PageSize[254.88 581.04]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvMonarch/Monarch Envelope 3.875x7.5in: "<</cupsInteger0 80/PageSize[279 540]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvDL/DL Envelope 110x220mm: "<</cupsInteger0 90/PageSize[311.76 623.52]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Env10/#10 Envelope 4.12x9.5in: "<</cupsInteger0 81/PageSize[297 684]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvChou3/#3 Japanese Envelope 120x235mm: "<</cupsInteger0 110/PageSize[339.84 666]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvC5/C5 Envelope 162x229mm: "<</cupsInteger0 91/PageSize[459 649]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvB5/B5 Envelope 176x250mm: "<</cupsInteger0 100/PageSize[499 709]/ImagingBBox null>>setpagedevice"
|
||||
*CloseUI: *PageRegion
|
||||
*DefaultImageableArea: A4
|
||||
*ImageableArea Card3x5/Index Card 3x5in: "18 14 198 346"
|
||||
*ImageableArea Hagaki/Hagaki 100x148mm: "18 14 266 406"
|
||||
*ImageableArea Photo4x6/Photo 4x6in: "18 14 270 418"
|
||||
*ImageableArea A6/A6 105x148mm: "18 14 279.359985351562 405.760009765625"
|
||||
*ImageableArea Photo5x7/Photo 5x7in: "18 14 342 490"
|
||||
*ImageableArea Card5x8/Index Card 5x8in: "18 14 342 562"
|
||||
*ImageableArea Oufuku/Oufuku-Hagaki 148x200mm: "18 14 549 406"
|
||||
*ImageableArea A5/A5 148x210mm: "18 14 401.760009765625 581.440002441406"
|
||||
*ImageableArea B5/B5 176x250mm: "18 14 480.959991455078 694.47998046875"
|
||||
*ImageableArea JB5/JB5 182x257mm: "18 14 498.239990234375 714.640014648438"
|
||||
*ImageableArea Executive/Executive 7.25x10.5in: "18 14 504 742"
|
||||
*ImageableArea 16k/16k 7.75x10.75in: "18 14 540 760"
|
||||
*ImageableArea Letter/Letter 8.5x11in: "18 14 594 778"
|
||||
*ImageableArea A4/A4 210x297mm: "18 14 577.440002441406 827.679992675781"
|
||||
*ImageableArea ExecutiveJIS/Executive (JIS) 8.5x12.986in: "18 14 594 922"
|
||||
*ImageableArea FLSA/American Foolscap 8.5x13in: "18 14 594 922"
|
||||
*ImageableArea Legal/Legal 8.5x14in: "18 14 594 994"
|
||||
*ImageableArea EnvA2/A2 Envelope 4.37x5.75in: "18 14 296.640014648438 400"
|
||||
*ImageableArea EnvC6/C6 Envelope 114x162mm: "18 14 305.279998779297 445.359985351562"
|
||||
*ImageableArea EnvChou4/#4 Japanese Envelope 90x205mm: "18 14 236.880004882812 567.039978027344"
|
||||
*ImageableArea EnvMonarch/Monarch Envelope 3.875x7.5in: "18 14 261 526"
|
||||
*ImageableArea EnvDL/DL Envelope 110x220mm: "18 14 293.760009765625 609.52001953125"
|
||||
*ImageableArea Env10/#10 Envelope 4.12x9.5in: "18 14 279 670"
|
||||
*ImageableArea EnvChou3/#3 Japanese Envelope 120x235mm: "18 14 321.839996337891 652"
|
||||
*ImageableArea EnvC5/C5 Envelope 162x229mm: "18 14 441 635"
|
||||
*ImageableArea EnvB5/B5 Envelope 176x250mm: "18 14 481 695"
|
||||
*DefaultPaperDimension: A4
|
||||
*PaperDimension Card3x5/Index Card 3x5in: "216 360"
|
||||
*PaperDimension Hagaki/Hagaki 100x148mm: "284 420"
|
||||
*PaperDimension Photo4x6/Photo 4x6in: "288 432"
|
||||
*PaperDimension A6/A6 105x148mm: "297.359985351562 419.760009765625"
|
||||
*PaperDimension Photo5x7/Photo 5x7in: "360 504"
|
||||
*PaperDimension Card5x8/Index Card 5x8in: "360 576"
|
||||
*PaperDimension Oufuku/Oufuku-Hagaki 148x200mm: "567 420"
|
||||
*PaperDimension A5/A5 148x210mm: "419.760009765625 595.440002441406"
|
||||
*PaperDimension B5/B5 176x250mm: "498.959991455078 708.47998046875"
|
||||
*PaperDimension JB5/JB5 182x257mm: "516.239990234375 728.640014648438"
|
||||
*PaperDimension Executive/Executive 7.25x10.5in: "522 756"
|
||||
*PaperDimension 16k/16k 7.75x10.75in: "558 774"
|
||||
*PaperDimension Letter/Letter 8.5x11in: "612 792"
|
||||
*PaperDimension A4/A4 210x297mm: "595.440002441406 841.679992675781"
|
||||
*PaperDimension ExecutiveJIS/Executive (JIS) 8.5x12.986in: "612 936"
|
||||
*PaperDimension FLSA/American Foolscap 8.5x13in: "612 936"
|
||||
*PaperDimension Legal/Legal 8.5x14in: "612 1008"
|
||||
*PaperDimension EnvA2/A2 Envelope 4.37x5.75in: "314.640014648438 414"
|
||||
*PaperDimension EnvC6/C6 Envelope 114x162mm: "323.279998779297 459.359985351562"
|
||||
*PaperDimension EnvChou4/#4 Japanese Envelope 90x205mm: "254.880004882812 581.039978027344"
|
||||
*PaperDimension EnvMonarch/Monarch Envelope 3.875x7.5in: "279 540"
|
||||
*PaperDimension EnvDL/DL Envelope 110x220mm: "311.760009765625 623.52001953125"
|
||||
*PaperDimension Env10/#10 Envelope 4.12x9.5in: "297 684"
|
||||
*PaperDimension EnvChou3/#3 Japanese Envelope 120x235mm: "339.839996337891 666"
|
||||
*PaperDimension EnvC5/C5 Envelope 162x229mm: "459 649"
|
||||
*PaperDimension EnvB5/B5 Envelope 176x250mm: "499 709"
|
||||
*MaxMediaWidth: "612"
|
||||
*MaxMediaHeight: "1008"
|
||||
*HWMargins: 18 14 18 14
|
||||
*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
|
||||
*ParamCustomPageSize Width: 1 points 72 612
|
||||
*ParamCustomPageSize Height: 2 points 288 1008
|
||||
*ParamCustomPageSize WidthOffset: 3 points 0 0
|
||||
*ParamCustomPageSize HeightOffset: 4 points 0 0
|
||||
*ParamCustomPageSize Orientation: 5 int 0 0
|
||||
*OpenUI *Duplex/Double-Sided Printing: PickOne
|
||||
*OrderDependency: 10 AnySetup *Duplex
|
||||
*DefaultDuplex: DuplexNoTumble
|
||||
*Duplex DuplexNoTumble/Long Edge (Standard): "<</Duplex true/Tumble false>>setpagedevice"
|
||||
*Duplex DuplexTumble/Short Edge (Flip): "<</Duplex true/Tumble true>>setpagedevice"
|
||||
*Duplex None/Off: "<</Duplex false/Tumble false>>setpagedevice"
|
||||
*CloseUI: *Duplex
|
||||
*OpenUI *InputSlot/Media Source: PickOne
|
||||
*OrderDependency: 10 AnySetup *InputSlot
|
||||
*DefaultInputSlot: Auto
|
||||
*InputSlot Auto/Auto-Select: "<</MediaPosition 7>>setpagedevice"
|
||||
*InputSlot PhotoTray/Photo Tray: "<</MediaPosition 1>>setpagedevice"
|
||||
*InputSlot Upper/Upper Tray: "<</MediaPosition 1>>setpagedevice"
|
||||
*InputSlot Lower/Lower Tray: "<</MediaPosition 4>>setpagedevice"
|
||||
*InputSlot Envelope/Envelope Feeder: "<</MediaPosition 3>>setpagedevice"
|
||||
*InputSlot LargeCapacity/Large Capacity Tray: "<</MediaPosition 5>>setpagedevice"
|
||||
*InputSlot Manual/Manual Feeder: "<</MediaPosition 2>>setpagedevice"
|
||||
*InputSlot MPTray/Multi Purpose Tray: "<</MediaPosition 1>>setpagedevice"
|
||||
*CloseUI: *InputSlot
|
||||
*OpenUI *ColorModel/Output Mode: PickOne
|
||||
*OrderDependency: 10 AnySetup *ColorModel
|
||||
*DefaultColorModel: Gray
|
||||
*ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsBitsPerColor 1/cupsRowCount 1/cupsRowStep 2>>setpagedevice"
|
||||
*CloseUI: *ColorModel
|
||||
*OpenUI *MediaType/Media Type: PickOne
|
||||
*OrderDependency: 10 AnySetup *MediaType
|
||||
*DefaultMediaType: Plain
|
||||
*MediaType Plain/Plain Paper: "<</MediaType(Plain)/cupsMediaType 0>>setpagedevice"
|
||||
*CloseUI: *MediaType
|
||||
*OpenUI *OutputMode/Print Quality: PickOne
|
||||
*OrderDependency: 10 AnySetup *OutputMode
|
||||
*DefaultOutputMode: Normal
|
||||
*OutputMode Normal/Normal: "<</OutputType(0)/HWResolution[600 600]>>setpagedevice"
|
||||
*OutputMode Draft/Draft (Economy): "<</OutputType(-1)/HWResolution[300 300]>>setpagedevice"
|
||||
*OutputMode Best/Best: "<</OutputType(0)/HWResolution[600 600]>>setpagedevice"
|
||||
*CloseUI: *OutputMode
|
||||
*OpenGroup: InstallableOptions/Installable Options
|
||||
*OpenUI *OptionDuplex/Duplexer Installed: Boolean
|
||||
*OrderDependency: 10 AnySetup *OptionDuplex
|
||||
*DefaultOptionDuplex: False
|
||||
*OptionDuplex False/Not Installed: ""
|
||||
*OptionDuplex True/Installed: ""
|
||||
*CloseUI: *OptionDuplex
|
||||
*CloseGroup: InstallableOptions
|
||||
*DefaultFont: Courier
|
||||
*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
|
||||
*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
|
||||
*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
|
||||
*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-Demi: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-Light: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Courier: Standard "(1.05)" Standard ROM
|
||||
*Font Courier-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Courier-Oblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-Italic: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-Roman: Standard "(1.05)" Standard ROM
|
||||
*Font Symbol: Special "(001.005)" Special ROM
|
||||
*Font Times-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Times-Italic: Standard "(1.05)" Standard ROM
|
||||
*Font Times-Roman: Standard "(1.05)" Standard ROM
|
||||
*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
|
||||
*Font ZapfDingbats: Special "(001.005)" Special ROM
|
||||
*% End of hp-laserjet_p2015n_series.ppd, 15195 bytes.
|
2256
configfiles/etc/cups/ppd/Salle222.ppd
Normal file
2256
configfiles/etc/cups/ppd/Salle222.ppd
Normal file
File diff suppressed because it is too large
Load Diff
237
configfiles/etc/cups/ppd/Salle222.ppd.O
Normal file
237
configfiles/etc/cups/ppd/Salle222.ppd.O
Normal file
@ -0,0 +1,237 @@
|
||||
*PPD-Adobe: "4.3"
|
||||
*%%%% PPD file for HP LaserJet p2015n Series with CUPS.
|
||||
*%%%% Created by the CUPS PPD Compiler CUPS v1.6.2.
|
||||
*% (c) 2008 Copyright Hewlett-Packard Development Company, LP
|
||||
*FormatVersion: "4.3"
|
||||
*FileVersion: "3.13.5"
|
||||
*LanguageVersion: English
|
||||
*LanguageEncoding: ISOLatin1
|
||||
*PCFileName: "hp-laserjet_p2015n_series.ppd"
|
||||
*Product: "(HP LaserJet p2015n Printer)"
|
||||
*Manufacturer: "HP"
|
||||
*ModelName: "HP LaserJet p2015n Series"
|
||||
*ShortNickName: "HP LaserJet p2015n Series"
|
||||
*NickName: "HP LaserJet p2015n Series, hpcups 3.13.5"
|
||||
*PSVersion: "(3010.000) 0"
|
||||
*LanguageLevel: "3"
|
||||
*ColorDevice: True
|
||||
*DefaultColorSpace: RGB
|
||||
*FileSystem: False
|
||||
*Throughput: "1"
|
||||
*LandscapeOrientation: Plus90
|
||||
*TTRasterizer: Type42
|
||||
*% Driver-defined attributes...
|
||||
*RequiresPageRegion All: True
|
||||
*cupsEvenDuplex: True
|
||||
*hpPrinterLanguage: "ljmono"
|
||||
*cupsModelName: "HP LaserJet"
|
||||
*1284DeviceID: "MFG:HP;MDL:hp laserjet p2015n series;DES:hp laserjet p2015n series;"
|
||||
*cupsVersion: 1.6
|
||||
*cupsModelNumber: 0
|
||||
*cupsManualCopies: True
|
||||
*cupsFilter: "application/vnd.cups-raster 0 hpcups"
|
||||
*cupsLanguages: "en"
|
||||
*OpenUI *PageSize/Media Size: PickOne
|
||||
*OrderDependency: 10 AnySetup *PageSize
|
||||
*DefaultPageSize: A4
|
||||
*PageSize Card3x5/Index Card 3x5in: "<</cupsInteger0 78/PageSize [216 360]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Hagaki/Hagaki 100x148mm: "<</cupsInteger0 71/PageSize[284 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Photo4x6/Photo 4x6in: "<</cupsInteger0 74/PageSize[288 432]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A6/A6 105x148mm: "<</cupsInteger0 73/PageSize[297.36 419.76]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Photo5x7/Photo 5x7in: "<</cupsInteger0 122/PageSize[360 504]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Card5x8/Index Card 5x8in: "<</cupsInteger0 75/PageSize[360 576]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Oufuku/Oufuku-Hagaki 148x200mm: "<</cupsInteger0 72/PageSize[567 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A5/A5 148x210mm: "<</cupsInteger0 25/PageSize[419.76 595.44]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize B5/B5 176x250mm: "<</cupsInteger0 65/PageSize[498.96 708.48]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize JB5/JB5 182x257mm: "<</cupsInteger0 45/PageSize[516.24 728.64]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Executive/Executive 7.25x10.5in: "<</cupsInteger0 1/PageSize[522 756]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize 16k/16k 7.75x10.75in: "<</cupsInteger0 101/PageSize[558 774]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Letter/Letter 8.5x11in: "<</cupsInteger0 2/PageSize[612 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A4/A4 210x297mm: "<</cupsInteger0 26/PageSize[595.44 841.68]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize FLSA/American Foolscap 8.5x13in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Legal/Legal 8.5x14in: "<</cupsInteger0 3/PageSize[612 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvA2/A2 Envelope 4.37x5.75in: "<</cupsInteger0 109/PageSize[314.64 414]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvC6/C6 Envelope 114x162mm: "<</cupsInteger0 92/PageSize[323.28 459.36]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvChou4/#4 Japanese Envelope 90x205mm: "<</cupsInteger0 111/PageSize[254.88 581.04]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvMonarch/Monarch Envelope 3.875x7.5in: "<</cupsInteger0 80/PageSize[279 540]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvDL/DL Envelope 110x220mm: "<</cupsInteger0 90/PageSize[311.76 623.52]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Env10/#10 Envelope 4.12x9.5in: "<</cupsInteger0 81/PageSize[297 684]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvChou3/#3 Japanese Envelope 120x235mm: "<</cupsInteger0 110/PageSize[339.84 666]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvC5/C5 Envelope 162x229mm: "<</cupsInteger0 91/PageSize[459 649]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvB5/B5 Envelope 176x250mm: "<</cupsInteger0 100/PageSize[499 709]/ImagingBBox null>>setpagedevice"
|
||||
*CloseUI: *PageSize
|
||||
*OpenUI *PageRegion/Media Size: PickOne
|
||||
*OrderDependency: 10 AnySetup *PageRegion
|
||||
*DefaultPageRegion: A4
|
||||
*PageRegion Card3x5/Index Card 3x5in: "<</cupsInteger0 78/PageSize[216 360]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Hagaki/Hagaki 100x148mm: "<</cupsInteger0 71/PageSize[284 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Photo4x6/Photo 4x6in: "<</cupsInteger0 74/PageSize[288 432]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A6/A6 105x148mm: "<</cupsInteger0 73/PageSize[297.36 419.76]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Photo5x7/Photo 5x7in: "<</cupsInteger0 122/PageSize[360 504]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Card5x8/Index Card 5x8in: "<</cupsInteger0 75/PageSize[360 576]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Oufuku/Oufuku-Hagaki 148x200mm: "<</cupsInteger0 72/PageSize[567 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A5/A5 148x210mm: "<</cupsInteger0 25/PageSize[419.76 595.44]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion B5/B5 176x250mm: "<</cupsInteger0 65/PageSize[498.96 708.48]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion JB5/JB5 182x257mm: "<</cupsInteger0 45/PageSize [516.24 728.64]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Executive/Executive 7.25x10.5in: "<</cupsInteger0 1/PageSize[522 756]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion 16k/16k 7.75x10.75in: "<</cupsInteger0 101/PageSize[558 774]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Letter/Letter 8.5x11in: "<</cupsInteger0 2/PageSize[612 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A4/A4 210x297mm: "<</cupsInteger0 26/PageSize[595.44 841.68]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion FLSA/American Foolscap 8.5x13in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Legal/Legal 8.5x14in: "<</cupsInteger0 3/PageSize[612 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvA2/A2 Envelope 4.37x5.75in: "<</cupsInteger0 109/PageSize[314.64 414]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvC6/C6 Envelope 114x162mm: "<</cupsInteger0 92/PageSize[323.28 459.36]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvChou4/#4 Japanese Envelope 90x205mm: "<</cupsInteger0 111/PageSize[254.88 581.04]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvMonarch/Monarch Envelope 3.875x7.5in: "<</cupsInteger0 80/PageSize[279 540]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvDL/DL Envelope 110x220mm: "<</cupsInteger0 90/PageSize[311.76 623.52]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Env10/#10 Envelope 4.12x9.5in: "<</cupsInteger0 81/PageSize[297 684]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvChou3/#3 Japanese Envelope 120x235mm: "<</cupsInteger0 110/PageSize[339.84 666]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvC5/C5 Envelope 162x229mm: "<</cupsInteger0 91/PageSize[459 649]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvB5/B5 Envelope 176x250mm: "<</cupsInteger0 100/PageSize[499 709]/ImagingBBox null>>setpagedevice"
|
||||
*CloseUI: *PageRegion
|
||||
*DefaultImageableArea: A4
|
||||
*ImageableArea Card3x5/Index Card 3x5in: "18 14 198 346"
|
||||
*ImageableArea Hagaki/Hagaki 100x148mm: "18 14 266 406"
|
||||
*ImageableArea Photo4x6/Photo 4x6in: "18 14 270 418"
|
||||
*ImageableArea A6/A6 105x148mm: "18 14 279.359985351562 405.760009765625"
|
||||
*ImageableArea Photo5x7/Photo 5x7in: "18 14 342 490"
|
||||
*ImageableArea Card5x8/Index Card 5x8in: "18 14 342 562"
|
||||
*ImageableArea Oufuku/Oufuku-Hagaki 148x200mm: "18 14 549 406"
|
||||
*ImageableArea A5/A5 148x210mm: "18 14 401.760009765625 581.440002441406"
|
||||
*ImageableArea B5/B5 176x250mm: "18 14 480.959991455078 694.47998046875"
|
||||
*ImageableArea JB5/JB5 182x257mm: "18 14 498.239990234375 714.640014648438"
|
||||
*ImageableArea Executive/Executive 7.25x10.5in: "18 14 504 742"
|
||||
*ImageableArea 16k/16k 7.75x10.75in: "18 14 540 760"
|
||||
*ImageableArea Letter/Letter 8.5x11in: "18 14 594 778"
|
||||
*ImageableArea A4/A4 210x297mm: "18 14 577.440002441406 827.679992675781"
|
||||
*ImageableArea ExecutiveJIS/Executive (JIS) 8.5x12.986in: "18 14 594 922"
|
||||
*ImageableArea FLSA/American Foolscap 8.5x13in: "18 14 594 922"
|
||||
*ImageableArea Legal/Legal 8.5x14in: "18 14 594 994"
|
||||
*ImageableArea EnvA2/A2 Envelope 4.37x5.75in: "18 14 296.640014648438 400"
|
||||
*ImageableArea EnvC6/C6 Envelope 114x162mm: "18 14 305.279998779297 445.359985351562"
|
||||
*ImageableArea EnvChou4/#4 Japanese Envelope 90x205mm: "18 14 236.880004882812 567.039978027344"
|
||||
*ImageableArea EnvMonarch/Monarch Envelope 3.875x7.5in: "18 14 261 526"
|
||||
*ImageableArea EnvDL/DL Envelope 110x220mm: "18 14 293.760009765625 609.52001953125"
|
||||
*ImageableArea Env10/#10 Envelope 4.12x9.5in: "18 14 279 670"
|
||||
*ImageableArea EnvChou3/#3 Japanese Envelope 120x235mm: "18 14 321.839996337891 652"
|
||||
*ImageableArea EnvC5/C5 Envelope 162x229mm: "18 14 441 635"
|
||||
*ImageableArea EnvB5/B5 Envelope 176x250mm: "18 14 481 695"
|
||||
*DefaultPaperDimension: A4
|
||||
*PaperDimension Card3x5/Index Card 3x5in: "216 360"
|
||||
*PaperDimension Hagaki/Hagaki 100x148mm: "284 420"
|
||||
*PaperDimension Photo4x6/Photo 4x6in: "288 432"
|
||||
*PaperDimension A6/A6 105x148mm: "297.359985351562 419.760009765625"
|
||||
*PaperDimension Photo5x7/Photo 5x7in: "360 504"
|
||||
*PaperDimension Card5x8/Index Card 5x8in: "360 576"
|
||||
*PaperDimension Oufuku/Oufuku-Hagaki 148x200mm: "567 420"
|
||||
*PaperDimension A5/A5 148x210mm: "419.760009765625 595.440002441406"
|
||||
*PaperDimension B5/B5 176x250mm: "498.959991455078 708.47998046875"
|
||||
*PaperDimension JB5/JB5 182x257mm: "516.239990234375 728.640014648438"
|
||||
*PaperDimension Executive/Executive 7.25x10.5in: "522 756"
|
||||
*PaperDimension 16k/16k 7.75x10.75in: "558 774"
|
||||
*PaperDimension Letter/Letter 8.5x11in: "612 792"
|
||||
*PaperDimension A4/A4 210x297mm: "595.440002441406 841.679992675781"
|
||||
*PaperDimension ExecutiveJIS/Executive (JIS) 8.5x12.986in: "612 936"
|
||||
*PaperDimension FLSA/American Foolscap 8.5x13in: "612 936"
|
||||
*PaperDimension Legal/Legal 8.5x14in: "612 1008"
|
||||
*PaperDimension EnvA2/A2 Envelope 4.37x5.75in: "314.640014648438 414"
|
||||
*PaperDimension EnvC6/C6 Envelope 114x162mm: "323.279998779297 459.359985351562"
|
||||
*PaperDimension EnvChou4/#4 Japanese Envelope 90x205mm: "254.880004882812 581.039978027344"
|
||||
*PaperDimension EnvMonarch/Monarch Envelope 3.875x7.5in: "279 540"
|
||||
*PaperDimension EnvDL/DL Envelope 110x220mm: "311.760009765625 623.52001953125"
|
||||
*PaperDimension Env10/#10 Envelope 4.12x9.5in: "297 684"
|
||||
*PaperDimension EnvChou3/#3 Japanese Envelope 120x235mm: "339.839996337891 666"
|
||||
*PaperDimension EnvC5/C5 Envelope 162x229mm: "459 649"
|
||||
*PaperDimension EnvB5/B5 Envelope 176x250mm: "499 709"
|
||||
*MaxMediaWidth: "612"
|
||||
*MaxMediaHeight: "1008"
|
||||
*HWMargins: 18 14 18 14
|
||||
*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
|
||||
*ParamCustomPageSize Width: 1 points 72 612
|
||||
*ParamCustomPageSize Height: 2 points 288 1008
|
||||
*ParamCustomPageSize WidthOffset: 3 points 0 0
|
||||
*ParamCustomPageSize HeightOffset: 4 points 0 0
|
||||
*ParamCustomPageSize Orientation: 5 int 0 0
|
||||
*OpenUI *Duplex/Double-Sided Printing: PickOne
|
||||
*OrderDependency: 10 AnySetup *Duplex
|
||||
*DefaultDuplex: None
|
||||
*Duplex DuplexNoTumble/Long Edge (Standard): "<</Duplex true/Tumble false>>setpagedevice"
|
||||
*Duplex DuplexTumble/Short Edge (Flip): "<</Duplex true/Tumble true>>setpagedevice"
|
||||
*Duplex None/Off: "<</Duplex false/Tumble false>>setpagedevice"
|
||||
*CloseUI: *Duplex
|
||||
*OpenUI *InputSlot/Media Source: PickOne
|
||||
*OrderDependency: 10 AnySetup *InputSlot
|
||||
*DefaultInputSlot: Auto
|
||||
*InputSlot Auto/Auto-Select: "<</MediaPosition 7>>setpagedevice"
|
||||
*InputSlot PhotoTray/Photo Tray: "<</MediaPosition 1>>setpagedevice"
|
||||
*InputSlot Upper/Upper Tray: "<</MediaPosition 1>>setpagedevice"
|
||||
*InputSlot Lower/Lower Tray: "<</MediaPosition 4>>setpagedevice"
|
||||
*InputSlot Envelope/Envelope Feeder: "<</MediaPosition 3>>setpagedevice"
|
||||
*InputSlot LargeCapacity/Large Capacity Tray: "<</MediaPosition 5>>setpagedevice"
|
||||
*InputSlot Manual/Manual Feeder: "<</MediaPosition 2>>setpagedevice"
|
||||
*InputSlot MPTray/Multi Purpose Tray: "<</MediaPosition 1>>setpagedevice"
|
||||
*CloseUI: *InputSlot
|
||||
*OpenUI *ColorModel/Output Mode: PickOne
|
||||
*OrderDependency: 10 AnySetup *ColorModel
|
||||
*DefaultColorModel: Gray
|
||||
*ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsBitsPerColor 1/cupsRowCount 1/cupsRowStep 2>>setpagedevice"
|
||||
*CloseUI: *ColorModel
|
||||
*OpenUI *MediaType/Media Type: PickOne
|
||||
*OrderDependency: 10 AnySetup *MediaType
|
||||
*DefaultMediaType: Plain
|
||||
*MediaType Plain/Plain Paper: "<</MediaType(Plain)/cupsMediaType 0>>setpagedevice"
|
||||
*CloseUI: *MediaType
|
||||
*OpenUI *OutputMode/Print Quality: PickOne
|
||||
*OrderDependency: 10 AnySetup *OutputMode
|
||||
*DefaultOutputMode: Normal
|
||||
*OutputMode Normal/Normal: "<</OutputType(0)/HWResolution[600 600]>>setpagedevice"
|
||||
*OutputMode Draft/Draft (Economy): "<</OutputType(-1)/HWResolution[300 300]>>setpagedevice"
|
||||
*OutputMode Best/Best: "<</OutputType(0)/HWResolution[600 600]>>setpagedevice"
|
||||
*CloseUI: *OutputMode
|
||||
*OpenGroup: InstallableOptions/Installable Options
|
||||
*OpenUI *OptionDuplex/Duplexer Installed: Boolean
|
||||
*OrderDependency: 10 AnySetup *OptionDuplex
|
||||
*DefaultOptionDuplex: False
|
||||
*OptionDuplex False/Not Installed: ""
|
||||
*OptionDuplex True/Installed: ""
|
||||
*CloseUI: *OptionDuplex
|
||||
*CloseGroup: InstallableOptions
|
||||
*DefaultFont: Courier
|
||||
*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
|
||||
*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
|
||||
*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
|
||||
*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-Demi: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-Light: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Courier: Standard "(1.05)" Standard ROM
|
||||
*Font Courier-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Courier-Oblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-Italic: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-Roman: Standard "(1.05)" Standard ROM
|
||||
*Font Symbol: Special "(001.005)" Special ROM
|
||||
*Font Times-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Times-Italic: Standard "(1.05)" Standard ROM
|
||||
*Font Times-Roman: Standard "(1.05)" Standard ROM
|
||||
*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
|
||||
*Font ZapfDingbats: Special "(001.005)" Special ROM
|
||||
*% End of hp-laserjet_p2015n_series.ppd, 15195 bytes.
|
2256
configfiles/etc/cups/ppd/Salle224.ppd
Normal file
2256
configfiles/etc/cups/ppd/Salle224.ppd
Normal file
File diff suppressed because it is too large
Load Diff
4137
configfiles/etc/cups/ppd/Salle224.ppd.O
Normal file
4137
configfiles/etc/cups/ppd/Salle224.ppd.O
Normal file
File diff suppressed because it is too large
Load Diff
2256
configfiles/etc/cups/ppd/Salle225.ppd
Normal file
2256
configfiles/etc/cups/ppd/Salle225.ppd
Normal file
File diff suppressed because it is too large
Load Diff
237
configfiles/etc/cups/ppd/Salle225.ppd.O
Normal file
237
configfiles/etc/cups/ppd/Salle225.ppd.O
Normal file
@ -0,0 +1,237 @@
|
||||
*PPD-Adobe: "4.3"
|
||||
*%%%% PPD file for HP LaserJet p2015n Series with CUPS.
|
||||
*%%%% Created by the CUPS PPD Compiler CUPS v1.6.2.
|
||||
*% (c) 2008 Copyright Hewlett-Packard Development Company, LP
|
||||
*FormatVersion: "4.3"
|
||||
*FileVersion: "3.13.5"
|
||||
*LanguageVersion: English
|
||||
*LanguageEncoding: ISOLatin1
|
||||
*PCFileName: "hp-laserjet_p2015n_series.ppd"
|
||||
*Product: "(HP LaserJet p2015n Printer)"
|
||||
*Manufacturer: "HP"
|
||||
*ModelName: "HP LaserJet p2015n Series"
|
||||
*ShortNickName: "HP LaserJet p2015n Series"
|
||||
*NickName: "HP LaserJet p2015n Series, hpcups 3.13.5"
|
||||
*PSVersion: "(3010.000) 0"
|
||||
*LanguageLevel: "3"
|
||||
*ColorDevice: True
|
||||
*DefaultColorSpace: RGB
|
||||
*FileSystem: False
|
||||
*Throughput: "1"
|
||||
*LandscapeOrientation: Plus90
|
||||
*TTRasterizer: Type42
|
||||
*% Driver-defined attributes...
|
||||
*RequiresPageRegion All: True
|
||||
*cupsEvenDuplex: True
|
||||
*hpPrinterLanguage: "ljmono"
|
||||
*cupsModelName: "HP LaserJet"
|
||||
*1284DeviceID: "MFG:HP;MDL:hp laserjet p2015n series;DES:hp laserjet p2015n series;"
|
||||
*cupsVersion: 1.6
|
||||
*cupsModelNumber: 0
|
||||
*cupsManualCopies: True
|
||||
*cupsFilter: "application/vnd.cups-raster 0 hpcups"
|
||||
*cupsLanguages: "en"
|
||||
*OpenUI *PageSize/Media Size: PickOne
|
||||
*OrderDependency: 10 AnySetup *PageSize
|
||||
*DefaultPageSize: A4
|
||||
*PageSize Card3x5/Index Card 3x5in: "<</cupsInteger0 78/PageSize [216 360]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Hagaki/Hagaki 100x148mm: "<</cupsInteger0 71/PageSize[284 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Photo4x6/Photo 4x6in: "<</cupsInteger0 74/PageSize[288 432]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A6/A6 105x148mm: "<</cupsInteger0 73/PageSize[297.36 419.76]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Photo5x7/Photo 5x7in: "<</cupsInteger0 122/PageSize[360 504]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Card5x8/Index Card 5x8in: "<</cupsInteger0 75/PageSize[360 576]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Oufuku/Oufuku-Hagaki 148x200mm: "<</cupsInteger0 72/PageSize[567 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A5/A5 148x210mm: "<</cupsInteger0 25/PageSize[419.76 595.44]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize B5/B5 176x250mm: "<</cupsInteger0 65/PageSize[498.96 708.48]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize JB5/JB5 182x257mm: "<</cupsInteger0 45/PageSize[516.24 728.64]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Executive/Executive 7.25x10.5in: "<</cupsInteger0 1/PageSize[522 756]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize 16k/16k 7.75x10.75in: "<</cupsInteger0 101/PageSize[558 774]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Letter/Letter 8.5x11in: "<</cupsInteger0 2/PageSize[612 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A4/A4 210x297mm: "<</cupsInteger0 26/PageSize[595.44 841.68]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize FLSA/American Foolscap 8.5x13in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Legal/Legal 8.5x14in: "<</cupsInteger0 3/PageSize[612 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvA2/A2 Envelope 4.37x5.75in: "<</cupsInteger0 109/PageSize[314.64 414]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvC6/C6 Envelope 114x162mm: "<</cupsInteger0 92/PageSize[323.28 459.36]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvChou4/#4 Japanese Envelope 90x205mm: "<</cupsInteger0 111/PageSize[254.88 581.04]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvMonarch/Monarch Envelope 3.875x7.5in: "<</cupsInteger0 80/PageSize[279 540]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvDL/DL Envelope 110x220mm: "<</cupsInteger0 90/PageSize[311.76 623.52]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Env10/#10 Envelope 4.12x9.5in: "<</cupsInteger0 81/PageSize[297 684]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvChou3/#3 Japanese Envelope 120x235mm: "<</cupsInteger0 110/PageSize[339.84 666]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvC5/C5 Envelope 162x229mm: "<</cupsInteger0 91/PageSize[459 649]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvB5/B5 Envelope 176x250mm: "<</cupsInteger0 100/PageSize[499 709]/ImagingBBox null>>setpagedevice"
|
||||
*CloseUI: *PageSize
|
||||
*OpenUI *PageRegion/Media Size: PickOne
|
||||
*OrderDependency: 10 AnySetup *PageRegion
|
||||
*DefaultPageRegion: A4
|
||||
*PageRegion Card3x5/Index Card 3x5in: "<</cupsInteger0 78/PageSize[216 360]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Hagaki/Hagaki 100x148mm: "<</cupsInteger0 71/PageSize[284 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Photo4x6/Photo 4x6in: "<</cupsInteger0 74/PageSize[288 432]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A6/A6 105x148mm: "<</cupsInteger0 73/PageSize[297.36 419.76]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Photo5x7/Photo 5x7in: "<</cupsInteger0 122/PageSize[360 504]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Card5x8/Index Card 5x8in: "<</cupsInteger0 75/PageSize[360 576]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Oufuku/Oufuku-Hagaki 148x200mm: "<</cupsInteger0 72/PageSize[567 420]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A5/A5 148x210mm: "<</cupsInteger0 25/PageSize[419.76 595.44]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion B5/B5 176x250mm: "<</cupsInteger0 65/PageSize[498.96 708.48]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion JB5/JB5 182x257mm: "<</cupsInteger0 45/PageSize [516.24 728.64]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Executive/Executive 7.25x10.5in: "<</cupsInteger0 1/PageSize[522 756]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion 16k/16k 7.75x10.75in: "<</cupsInteger0 101/PageSize[558 774]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Letter/Letter 8.5x11in: "<</cupsInteger0 2/PageSize[612 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A4/A4 210x297mm: "<</cupsInteger0 26/PageSize[595.44 841.68]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ExecutiveJIS/Executive (JIS) 8.5x12.986in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion FLSA/American Foolscap 8.5x13in: "<</cupsInteger0 10/PageSize[612 936]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Legal/Legal 8.5x14in: "<</cupsInteger0 3/PageSize[612 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvA2/A2 Envelope 4.37x5.75in: "<</cupsInteger0 109/PageSize[314.64 414]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvC6/C6 Envelope 114x162mm: "<</cupsInteger0 92/PageSize[323.28 459.36]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvChou4/#4 Japanese Envelope 90x205mm: "<</cupsInteger0 111/PageSize[254.88 581.04]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvMonarch/Monarch Envelope 3.875x7.5in: "<</cupsInteger0 80/PageSize[279 540]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvDL/DL Envelope 110x220mm: "<</cupsInteger0 90/PageSize[311.76 623.52]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Env10/#10 Envelope 4.12x9.5in: "<</cupsInteger0 81/PageSize[297 684]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvChou3/#3 Japanese Envelope 120x235mm: "<</cupsInteger0 110/PageSize[339.84 666]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvC5/C5 Envelope 162x229mm: "<</cupsInteger0 91/PageSize[459 649]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvB5/B5 Envelope 176x250mm: "<</cupsInteger0 100/PageSize[499 709]/ImagingBBox null>>setpagedevice"
|
||||
*CloseUI: *PageRegion
|
||||
*DefaultImageableArea: A4
|
||||
*ImageableArea Card3x5/Index Card 3x5in: "18 14 198 346"
|
||||
*ImageableArea Hagaki/Hagaki 100x148mm: "18 14 266 406"
|
||||
*ImageableArea Photo4x6/Photo 4x6in: "18 14 270 418"
|
||||
*ImageableArea A6/A6 105x148mm: "18 14 279.359985351562 405.760009765625"
|
||||
*ImageableArea Photo5x7/Photo 5x7in: "18 14 342 490"
|
||||
*ImageableArea Card5x8/Index Card 5x8in: "18 14 342 562"
|
||||
*ImageableArea Oufuku/Oufuku-Hagaki 148x200mm: "18 14 549 406"
|
||||
*ImageableArea A5/A5 148x210mm: "18 14 401.760009765625 581.440002441406"
|
||||
*ImageableArea B5/B5 176x250mm: "18 14 480.959991455078 694.47998046875"
|
||||
*ImageableArea JB5/JB5 182x257mm: "18 14 498.239990234375 714.640014648438"
|
||||
*ImageableArea Executive/Executive 7.25x10.5in: "18 14 504 742"
|
||||
*ImageableArea 16k/16k 7.75x10.75in: "18 14 540 760"
|
||||
*ImageableArea Letter/Letter 8.5x11in: "18 14 594 778"
|
||||
*ImageableArea A4/A4 210x297mm: "18 14 577.440002441406 827.679992675781"
|
||||
*ImageableArea ExecutiveJIS/Executive (JIS) 8.5x12.986in: "18 14 594 922"
|
||||
*ImageableArea FLSA/American Foolscap 8.5x13in: "18 14 594 922"
|
||||
*ImageableArea Legal/Legal 8.5x14in: "18 14 594 994"
|
||||
*ImageableArea EnvA2/A2 Envelope 4.37x5.75in: "18 14 296.640014648438 400"
|
||||
*ImageableArea EnvC6/C6 Envelope 114x162mm: "18 14 305.279998779297 445.359985351562"
|
||||
*ImageableArea EnvChou4/#4 Japanese Envelope 90x205mm: "18 14 236.880004882812 567.039978027344"
|
||||
*ImageableArea EnvMonarch/Monarch Envelope 3.875x7.5in: "18 14 261 526"
|
||||
*ImageableArea EnvDL/DL Envelope 110x220mm: "18 14 293.760009765625 609.52001953125"
|
||||
*ImageableArea Env10/#10 Envelope 4.12x9.5in: "18 14 279 670"
|
||||
*ImageableArea EnvChou3/#3 Japanese Envelope 120x235mm: "18 14 321.839996337891 652"
|
||||
*ImageableArea EnvC5/C5 Envelope 162x229mm: "18 14 441 635"
|
||||
*ImageableArea EnvB5/B5 Envelope 176x250mm: "18 14 481 695"
|
||||
*DefaultPaperDimension: A4
|
||||
*PaperDimension Card3x5/Index Card 3x5in: "216 360"
|
||||
*PaperDimension Hagaki/Hagaki 100x148mm: "284 420"
|
||||
*PaperDimension Photo4x6/Photo 4x6in: "288 432"
|
||||
*PaperDimension A6/A6 105x148mm: "297.359985351562 419.760009765625"
|
||||
*PaperDimension Photo5x7/Photo 5x7in: "360 504"
|
||||
*PaperDimension Card5x8/Index Card 5x8in: "360 576"
|
||||
*PaperDimension Oufuku/Oufuku-Hagaki 148x200mm: "567 420"
|
||||
*PaperDimension A5/A5 148x210mm: "419.760009765625 595.440002441406"
|
||||
*PaperDimension B5/B5 176x250mm: "498.959991455078 708.47998046875"
|
||||
*PaperDimension JB5/JB5 182x257mm: "516.239990234375 728.640014648438"
|
||||
*PaperDimension Executive/Executive 7.25x10.5in: "522 756"
|
||||
*PaperDimension 16k/16k 7.75x10.75in: "558 774"
|
||||
*PaperDimension Letter/Letter 8.5x11in: "612 792"
|
||||
*PaperDimension A4/A4 210x297mm: "595.440002441406 841.679992675781"
|
||||
*PaperDimension ExecutiveJIS/Executive (JIS) 8.5x12.986in: "612 936"
|
||||
*PaperDimension FLSA/American Foolscap 8.5x13in: "612 936"
|
||||
*PaperDimension Legal/Legal 8.5x14in: "612 1008"
|
||||
*PaperDimension EnvA2/A2 Envelope 4.37x5.75in: "314.640014648438 414"
|
||||
*PaperDimension EnvC6/C6 Envelope 114x162mm: "323.279998779297 459.359985351562"
|
||||
*PaperDimension EnvChou4/#4 Japanese Envelope 90x205mm: "254.880004882812 581.039978027344"
|
||||
*PaperDimension EnvMonarch/Monarch Envelope 3.875x7.5in: "279 540"
|
||||
*PaperDimension EnvDL/DL Envelope 110x220mm: "311.760009765625 623.52001953125"
|
||||
*PaperDimension Env10/#10 Envelope 4.12x9.5in: "297 684"
|
||||
*PaperDimension EnvChou3/#3 Japanese Envelope 120x235mm: "339.839996337891 666"
|
||||
*PaperDimension EnvC5/C5 Envelope 162x229mm: "459 649"
|
||||
*PaperDimension EnvB5/B5 Envelope 176x250mm: "499 709"
|
||||
*MaxMediaWidth: "612"
|
||||
*MaxMediaHeight: "1008"
|
||||
*HWMargins: 18 14 18 14
|
||||
*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
|
||||
*ParamCustomPageSize Width: 1 points 72 612
|
||||
*ParamCustomPageSize Height: 2 points 288 1008
|
||||
*ParamCustomPageSize WidthOffset: 3 points 0 0
|
||||
*ParamCustomPageSize HeightOffset: 4 points 0 0
|
||||
*ParamCustomPageSize Orientation: 5 int 0 0
|
||||
*OpenUI *Duplex/Double-Sided Printing: PickOne
|
||||
*OrderDependency: 10 AnySetup *Duplex
|
||||
*DefaultDuplex: DuplexNoTumble
|
||||
*Duplex DuplexNoTumble/Long Edge (Standard): "<</Duplex true/Tumble false>>setpagedevice"
|
||||
*Duplex DuplexTumble/Short Edge (Flip): "<</Duplex true/Tumble true>>setpagedevice"
|
||||
*Duplex None/Off: "<</Duplex false/Tumble false>>setpagedevice"
|
||||
*CloseUI: *Duplex
|
||||
*OpenUI *InputSlot/Media Source: PickOne
|
||||
*OrderDependency: 10 AnySetup *InputSlot
|
||||
*DefaultInputSlot: Auto
|
||||
*InputSlot Auto/Auto-Select: "<</MediaPosition 7>>setpagedevice"
|
||||
*InputSlot PhotoTray/Photo Tray: "<</MediaPosition 1>>setpagedevice"
|
||||
*InputSlot Upper/Upper Tray: "<</MediaPosition 1>>setpagedevice"
|
||||
*InputSlot Lower/Lower Tray: "<</MediaPosition 4>>setpagedevice"
|
||||
*InputSlot Envelope/Envelope Feeder: "<</MediaPosition 3>>setpagedevice"
|
||||
*InputSlot LargeCapacity/Large Capacity Tray: "<</MediaPosition 5>>setpagedevice"
|
||||
*InputSlot Manual/Manual Feeder: "<</MediaPosition 2>>setpagedevice"
|
||||
*InputSlot MPTray/Multi Purpose Tray: "<</MediaPosition 1>>setpagedevice"
|
||||
*CloseUI: *InputSlot
|
||||
*OpenUI *ColorModel/Output Mode: PickOne
|
||||
*OrderDependency: 10 AnySetup *ColorModel
|
||||
*DefaultColorModel: Gray
|
||||
*ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsBitsPerColor 1/cupsRowCount 1/cupsRowStep 2>>setpagedevice"
|
||||
*CloseUI: *ColorModel
|
||||
*OpenUI *MediaType/Media Type: PickOne
|
||||
*OrderDependency: 10 AnySetup *MediaType
|
||||
*DefaultMediaType: Plain
|
||||
*MediaType Plain/Plain Paper: "<</MediaType(Plain)/cupsMediaType 0>>setpagedevice"
|
||||
*CloseUI: *MediaType
|
||||
*OpenUI *OutputMode/Print Quality: PickOne
|
||||
*OrderDependency: 10 AnySetup *OutputMode
|
||||
*DefaultOutputMode: Normal
|
||||
*OutputMode Normal/Normal: "<</OutputType(0)/HWResolution[600 600]>>setpagedevice"
|
||||
*OutputMode Draft/Draft (Economy): "<</OutputType(-1)/HWResolution[300 300]>>setpagedevice"
|
||||
*OutputMode Best/Best: "<</OutputType(0)/HWResolution[600 600]>>setpagedevice"
|
||||
*CloseUI: *OutputMode
|
||||
*OpenGroup: InstallableOptions/Installable Options
|
||||
*OpenUI *OptionDuplex/Duplexer Installed: Boolean
|
||||
*OrderDependency: 10 AnySetup *OptionDuplex
|
||||
*DefaultOptionDuplex: False
|
||||
*OptionDuplex False/Not Installed: ""
|
||||
*OptionDuplex True/Installed: ""
|
||||
*CloseUI: *OptionDuplex
|
||||
*CloseGroup: InstallableOptions
|
||||
*DefaultFont: Courier
|
||||
*Font AvantGarde-Book: Standard "(1.05)" Standard ROM
|
||||
*Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
|
||||
*Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
|
||||
*Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-Demi: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-Light: Standard "(1.05)" Standard ROM
|
||||
*Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Courier: Standard "(1.05)" Standard ROM
|
||||
*Font Courier-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Courier-Oblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
|
||||
*Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
|
||||
*Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-Italic: Standard "(1.05)" Standard ROM
|
||||
*Font Palatino-Roman: Standard "(1.05)" Standard ROM
|
||||
*Font Symbol: Special "(001.005)" Special ROM
|
||||
*Font Times-Bold: Standard "(1.05)" Standard ROM
|
||||
*Font Times-BoldItalic: Standard "(1.05)" Standard ROM
|
||||
*Font Times-Italic: Standard "(1.05)" Standard ROM
|
||||
*Font Times-Roman: Standard "(1.05)" Standard ROM
|
||||
*Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
|
||||
*Font ZapfDingbats: Special "(001.005)" Special ROM
|
||||
*% End of hp-laserjet_p2015n_series.ppd, 15195 bytes.
|
2256
configfiles/etc/cups/ppd/Salle229.ppd
Normal file
2256
configfiles/etc/cups/ppd/Salle229.ppd
Normal file
File diff suppressed because it is too large
Load Diff
3555
configfiles/etc/cups/ppd/Salle229.ppd.O
Normal file
3555
configfiles/etc/cups/ppd/Salle229.ppd.O
Normal file
File diff suppressed because it is too large
Load Diff
2256
configfiles/etc/cups/ppd/Salle235.ppd
Normal file
2256
configfiles/etc/cups/ppd/Salle235.ppd
Normal file
File diff suppressed because it is too large
Load Diff
4831
configfiles/etc/cups/ppd/Salle235.ppd.O
Normal file
4831
configfiles/etc/cups/ppd/Salle235.ppd.O
Normal file
File diff suppressed because it is too large
Load Diff
385
configfiles/etc/cups/ppd/Virtual_PDF_Printer.ppd
Normal file
385
configfiles/etc/cups/ppd/Virtual_PDF_Printer.ppd
Normal file
@ -0,0 +1,385 @@
|
||||
*PPD-Adobe: "4.3"
|
||||
*%
|
||||
*% "$Id: postscript.ppd,v 1.1.1.1 2000/08/24 19:23:13 goffioul Exp $"
|
||||
*%
|
||||
*% Sample Postscript driver PPD file for the Common UNIX Printing
|
||||
*% System (CUPS).
|
||||
*%
|
||||
*% Michael Goffioul <goffioul@emic.ucl.ac.be>
|
||||
*%
|
||||
*% Changes to the original file by Volker Behr, Martin-Eric Racine,
|
||||
*% Nickolay Kondrashov and other contributors:
|
||||
*% added IEEE-1284 device id - 2008-03-24
|
||||
*% added custom page size - 2006-05-18
|
||||
*% replaced page descriptions - 2006-05-18
|
||||
*% InputSlot constraints removed - 2006-05-11
|
||||
*% maxed out imageable regions - 2006-05-11
|
||||
*% added pstitleiconv filter - 2006-05-11
|
||||
*% added ledger paper size - 2006-01-29
|
||||
*% match Adobe specifications - 2005-12-23
|
||||
*% additional paper formats - 2005-02-03 and 2005-02-07
|
||||
*% made A4 default paper size - 2005-02-03
|
||||
*% Color enabled - 2003-12-02
|
||||
*%
|
||||
*FormatVersion: "4.3"
|
||||
*FileVersion: "1.1"
|
||||
*LanguageVersion: English
|
||||
*LanguageEncoding: ISOLatin1
|
||||
*PCFileName: "CUPS-PDF.PPD"
|
||||
*Manufacturer: "Generic"
|
||||
*Product: "(CUPS v1.1)"
|
||||
*ModelName: "Generic CUPS-PDF Printer"
|
||||
*ShortNickName: "Generic CUPS-PDF Printer"
|
||||
*NickName: "Generic CUPS-PDF Printer"
|
||||
*1284DeviceID: "MFG:Generic;MDL:CUPS-PDF Printer;DES:Generic CUPS-PDF Printer;CLS:PRINTER;CMD:POSTSCRIPT;"
|
||||
*% cupsFilter: "application/vnd.cups-postscript 0 pstitleiconv"
|
||||
*PSVersion: "(2017.000) 0"
|
||||
*LanguageLevel: "2"
|
||||
*ColorDevice: True
|
||||
*DefaultColorSpace: RGB
|
||||
*FileSystem: False
|
||||
*Throughput: "8"
|
||||
*LandscapeOrientation: Plus90
|
||||
*TTRasterizer: Type42
|
||||
|
||||
*HWMargins: 0 0 0 0
|
||||
*VariablePaperSize: True
|
||||
*MaxMediaWidth: 100000
|
||||
*MaxMediaHeight: 100000
|
||||
*NonUIOrderDependency: 100 AnySetup *CustomPageSize
|
||||
*CustomPageSize True: "pop pop pop
|
||||
<</PageSize [ 5 -2 roll ] /ImagingBBox null>>setpagedevice"
|
||||
*End
|
||||
*ParamCustomPageSize Width: 1 points 36 100000
|
||||
*ParamCustomPageSize Height: 2 points 36 100000
|
||||
*ParamCustomPageSize Orientation: 3 int 0 3
|
||||
*ParamCustomPageSize WidthOffset: 4 points 0 0
|
||||
*ParamCustomPageSize HeightOffset: 5 points 0 0
|
||||
|
||||
*OpenGroup: General/General
|
||||
|
||||
*OpenUI *PageSize/Page Size: PickOne
|
||||
*OrderDependency: 100 AnySetup *PageSize
|
||||
*DefaultPageSize: A4
|
||||
*PageSize 11x14/11x14: "<</PageSize[792 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize 11x17/11x17: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize 13x19/13x19: "<</PageSize[936 1368]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize 16x20/16x20: "<</PageSize[1152 1440]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize 16x24/16x24: "<</PageSize[1152 1728]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize 2A/2A: "<</PageSize[3370 4768]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize 4A/4A: "<</PageSize[4768 6749]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize 8x10/8x10: "<</PageSize[576 720]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize 8x12/8x12: "<</PageSize[576 864]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A0/A0: "<</PageSize[2384 3370]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A1/A1: "<</PageSize[1684 2384]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A2/A2: "<</PageSize[1191 1684]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize A5/A5: "<</PageSize[421 595]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize AnsiA/ANSI A: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize AnsiB/ANSI B: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize AnsiC/ANSI C: "<</PageSize[1224 1584]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize AnsiD/ANSI D: "<</PageSize[1584 2448]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize AnsiE/ANSI E: "<</PageSize[2448 3168]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ArchA/Arch A: "<</PageSize[648 864]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ArchB/Arch B: "<</PageSize[864 1296]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ArchC/Arch C: "<</PageSize[1296 1728]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ArchD/Arch D: "<</PageSize[1728 2592]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ArchE/Arch E: "<</PageSize[2592 3456]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize C0/C0: "<</PageSize[2599 3676]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize C1/C1: "<</PageSize[1836 2599]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize C2/C2: "<</PageSize[1298 1836]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize C3/C3: "<</PageSize[918 1298]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize C4/C4: "<</PageSize[649 918]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Env10/Envelope #10: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvC5/Envelope C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvDL/Envelope DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize EnvMonarch/Envelope Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Executive/Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ISOB0/B0 (ISO): "<</PageSize[2834 4008]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ISOB1/B1 (ISO): "<</PageSize[2004 2834]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ISOB2/B2 (ISO): "<</PageSize[1417 2004]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ISOB3/B3 (ISO): "<</PageSize[1000 1417]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ISOB4/B4 (ISO): "<</PageSize[708 1000]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize ISOB5/B5 (ISO): "<</PageSize[498 708]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize JISB0/B0 (JIS): "<</PageSize[2919 4127]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize JISB1/B1 (JIS): "<</PageSize[2063 2919]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize JISB2/B2 (JIS): "<</PageSize[1459 2063]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize JISB3/B3 (JIS): "<</PageSize[1029 1459]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize JISB4/B4 (JIS): "<</PageSize[727 1029]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize JISB5/B5 (JIS): "<</PageSize[518 727]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Ledger/Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize RA0/RA0: "<</PageSize[2437 3458]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize RA1/RA1: "<</PageSize[1729 2437]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize RA2/RA2: "<</PageSize[1218 1729]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize RA3/RA3: "<</PageSize[864 1218]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize RA4/RA4: "<</PageSize[609 864]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize SRA0/SRA0: "<</PageSize[2551 3628]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize SRA1/SRA1: "<</PageSize[1814 2551]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize SRA2/SRA2: "<</PageSize[1275 1814]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize SRA3/SRA3: "<</PageSize[907 1275]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize SRA4/SRA4: "<</PageSize[637 907]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize SuperA/Super A: "<</PageSize[644 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize SuperB/Super B: "<</PageSize[936 1368]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize TabloidExtra/Tabloid Extra: "<</PageSize[864 1296]/ImagingBBox null>>setpagedevice"
|
||||
*PageSize Tabloid/Tabloid: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
|
||||
*CloseUI: *PageSize
|
||||
|
||||
*OpenUI *PageRegion: PickOne
|
||||
*OrderDependency: 100 AnySetup *PageRegion
|
||||
*DefaultPageRegion: A4
|
||||
*PageRegion 11x14/11x14: "<</PageSize[792 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion 11x17/11x17: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion 13x19/13x19: "<</PageSize[936 1368]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion 16x20/16x20: "<</PageSize[1152 1440]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion 16x24/16x24: "<</PageSize[1152 1728]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion 2A/2A: "<</PageSize[3370 4768]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion 4A/4A: "<</PageSize[4768 6749]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion 8x10/8x10: "<</PageSize[576 720]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion 8x12/8x12: "<</PageSize[576 864]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A0/A0: "<</PageSize[2384 3370]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A1/A1: "<</PageSize[1684 2384]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A2/A2: "<</PageSize[1191 1684]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion A5/A5: "<</PageSize[421 595]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion AnsiA/ANSI A: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion AnsiB/ANSI B: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion AnsiC/ANSI C: "<</PageSize[1224 1584]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion AnsiD/ANSI D: "<</PageSize[1584 2448]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion AnsiE/ANSI E: "<</PageSize[2448 3168]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ArchA/Arch A: "<</PageSize[648 864]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ArchB/Arch B: "<</PageSize[864 1296]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ArchC/Arch C: "<</PageSize[1296 1728]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ArchD/Arch D: "<</PageSize[1728 2592]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ArchE/Arch E: "<</PageSize[2592 3456]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion C0/C0: "<</PageSize[2599 3676]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion C1/C1: "<</PageSize[1836 2599]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion C2/C2: "<</PageSize[1298 1836]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion C3/C3: "<</PageSize[918 1298]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion C4/C4: "<</PageSize[649 918]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Env10/Envelope #10: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvC5/Envelope C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvDL/Envelope DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion EnvMonarch/Envelope Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Executive/Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ISOB0/B0 (ISO): "<</PageSize[2834 4008]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ISOB1/B1 (ISO): "<</PageSize[2004 2834]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ISOB2/B2 (ISO): "<</PageSize[1417 2004]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ISOB3/B3 (ISO): "<</PageSize[1000 1417]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ISOB4/B4 (ISO): "<</PageSize[708 1000]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion ISOB5/B5 (ISO): "<</PageSize[498 708]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion JISB0/B0 (JIS): "<</PageSize[2919 4127]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion JISB1/B1 (JIS): "<</PageSize[2063 2919]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion JISB2/B2 (JIS): "<</PageSize[1459 2063]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion JISB3/B3 (JIS): "<</PageSize[1029 1459]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion JISB4/B4 (JIS): "<</PageSize[727 1029]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion JISB5/B5 (JIS): "<</PageSize[518 727]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Ledger/Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion RA0/RA0: "<</PageSize[2437 3458]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion RA1/RA1: "<</PageSize[1729 2437]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion RA2/RA2: "<</PageSize[1218 1729]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion RA3/RA3: "<</PageSize[864 1218]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion RA4/RA4: "<</PageSize[609 864]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion SRA0/SRA0: "<</PageSize[2551 3628]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion SRA1/SRA1: "<</PageSize[1814 2551]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion SRA2/SRA2: "<</PageSize[1275 1814]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion SRA3/SRA3: "<</PageSize[907 1275]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion SRA4/SRA4: "<</PageSize[637 907]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion SuperA/Super A: "<</PageSize[644 1008]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion SuperB/Super B: "<</PageSize[936 1368]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion TabloidExtra/Tabloid Extra: "<</PageSize[864 1296]/ImagingBBox null>>setpagedevice"
|
||||
*PageRegion Tabloid/Tabloid: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
|
||||
*CloseUI: *PageRegion
|
||||
|
||||
*DefaultImageableArea: A4
|
||||
*ImageableArea 11x14/11x14: "0 0 792 1008"
|
||||
*ImageableArea 11x17/11x17: "0 0 792 1224"
|
||||
*ImageableArea 13x19/13x19: "0 0 936 1368"
|
||||
*ImageableArea 16x20/16x20: "0 0 1152 1440"
|
||||
*ImageableArea 16x24/16x24: "0 0 1152 1728"
|
||||
*ImageableArea 2A/2A: "0 0 3370 4768"
|
||||
*ImageableArea 4A/4A: "0 0 4768 6749"
|
||||
*ImageableArea 8x10/8x10: "0 0 576 720"
|
||||
*ImageableArea 8x12/8x12: "0 0 576 864"
|
||||
*ImageableArea A0/A0: "0 0 2384 3370"
|
||||
*ImageableArea A1/A1: "0 0 1684 2384"
|
||||
*ImageableArea A2/A2: "0 0 1191 1684"
|
||||
*ImageableArea A3/A3: "0 0 842 1191"
|
||||
*ImageableArea A4/A4: "0 0 595 842"
|
||||
*ImageableArea A5/A5: "0 0 421 595"
|
||||
*ImageableArea AnsiA/ANSI A: "0 0 612 792"
|
||||
*ImageableArea AnsiB/ANSI B: "0 0 792 1224"
|
||||
*ImageableArea AnsiC/ANSI C: "0 0 1224 1584"
|
||||
*ImageableArea AnsiD/ANSI D: "0 0 1584 2448"
|
||||
*ImageableArea AnsiE/ANSI E: "0 0 2448 3168"
|
||||
*ImageableArea ArchA/Arch A: "0 0 648 864"
|
||||
*ImageableArea ArchB/Arch B: "0 0 864 1296"
|
||||
*ImageableArea ArchC/Arch C: "0 0 1296 1728"
|
||||
*ImageableArea ArchD/Arch D: "0 0 1728 2592"
|
||||
*ImageableArea ArchE/Arch E: "0 0 2592 3456"
|
||||
*ImageableArea C0/C0: "0 0 2599 3676"
|
||||
*ImageableArea C1/C1: "0 0 1836 2599"
|
||||
*ImageableArea C2/C2: "0 0 1298 1836"
|
||||
*ImageableArea C3/C3: "0 0 918 1298"
|
||||
*ImageableArea C4/C4: "0 0 649 918"
|
||||
*ImageableArea C5/C5: "0 0 459 649"
|
||||
*ImageableArea Env10/Envelope #10: "0 0 297 684"
|
||||
*ImageableArea EnvC5/Envelope C5: "0 0 459 649"
|
||||
*ImageableArea EnvDL/Envelope DL: "0 0 312 624"
|
||||
*ImageableArea EnvMonarch/Envelope Monarch: "0 0 279 540"
|
||||
*ImageableArea Executive/Executive: "0 0 522 756"
|
||||
*ImageableArea ISOB0/B0 (ISO): "0 0 2834 4008"
|
||||
*ImageableArea ISOB1/B1 (ISO): "0 0 2004 2834"
|
||||
*ImageableArea ISOB2/B2 (ISO): "0 0 1417 2004"
|
||||
*ImageableArea ISOB3/B3 (ISO): "0 0 1000 1417"
|
||||
*ImageableArea ISOB4/B4 (ISO): "0 0 708 1000"
|
||||
*ImageableArea ISOB5/B5 (ISO): "0 0 498 708"
|
||||
*ImageableArea JISB0/B0 (JIS): "0 0 2919 4127"
|
||||
*ImageableArea JISB1/B1 (JIS): "0 0 2063 2919"
|
||||
*ImageableArea JISB2/B2 (JIS): "0 0 1459 2063"
|
||||
*ImageableArea JISB3/B3 (JIS): "0 0 1029 1459"
|
||||
*ImageableArea JISB4/B4 (JIS): "0 0 727 1029"
|
||||
*ImageableArea JISB5/B5 (JIS): "0 0 518 727"
|
||||
*ImageableArea Ledger/Ledger: "0 0 1224 792"
|
||||
*ImageableArea Legal/US Legal: "0 0 612 1008"
|
||||
*ImageableArea Letter/US Letter: "0 0 612 792"
|
||||
*ImageableArea RA0/RA0: "0 0 2437 3458"
|
||||
*ImageableArea RA1/RA1: "0 0 1729 2437"
|
||||
*ImageableArea RA2/RA2: "0 0 1218 1729"
|
||||
*ImageableArea RA3/RA3: "0 0 864 1218"
|
||||
*ImageableArea RA4/RA4: "0 0 609 864"
|
||||
*ImageableArea SRA0/SRA0: "0 0 2551 3628"
|
||||
*ImageableArea SRA1/SRA1: "0 0 1814 2551"
|
||||
*ImageableArea SRA2/SRA2: "0 0 1275 1814"
|
||||
*ImageableArea SRA3/SRA3: "0 0 907 1275"
|
||||
*ImageableArea SRA4/SRA4: "0 0 637 907"
|
||||
*ImageableArea SuperA/Super A: "0 0 644 1008"
|
||||
*ImageableArea SuperB/Super B: "0 0 936 1368"
|
||||
*ImageableArea TabloidExtra/Tabloid Extra: "0 0 864 1296"
|
||||
*ImageableArea Tabloid/Tabloid: "0 0 792 1224"
|
||||
|
||||
*DefaultPaperDimension: A4
|
||||
*PaperDimension 11x14/11x14: "792 1008"
|
||||
*PaperDimension 11x17/11x17: "792 1224"
|
||||
*PaperDimension 13x19/13x19: "936 1368"
|
||||
*PaperDimension 16x20/16x20: "1152 1440"
|
||||
*PaperDimension 16x24/16x24: "1152 1728"
|
||||
*PaperDimension 2A/2A: "3370 4768"
|
||||
*PaperDimension 4A/4A: "4768 6749"
|
||||
*PaperDimension 8x10/8x10: "576 720"
|
||||
*PaperDimension 8x12/8x12: "576 864"
|
||||
*PaperDimension A0/A0: "2384 3370"
|
||||
*PaperDimension A1/A1: "1684 2384"
|
||||
*PaperDimension A2/A2: "1191 1684"
|
||||
*PaperDimension A3/A3: "842 1191"
|
||||
*PaperDimension A4/A4: "595 842"
|
||||
*PaperDimension A5/A5: "421 595"
|
||||
*PaperDimension AnsiA/ANSI A: "612 792"
|
||||
*PaperDimension AnsiB/ANSI B: "792 1224"
|
||||
*PaperDimension AnsiC/ANSI C: "1224 1584"
|
||||
*PaperDimension AnsiD/ANSI D: "1584 2448"
|
||||
*PaperDimension AnsiE/ANSI E: "2448 3168"
|
||||
*PaperDimension ArchA/Arch A: "648 864"
|
||||
*PaperDimension ArchB/Arch B: "864 1296"
|
||||
*PaperDimension ArchC/Arch C: "1296 1728"
|
||||
*PaperDimension ArchD/Arch D: "1728 2592"
|
||||
*PaperDimension ArchE/Arch E: "2592 3456"
|
||||
*PaperDimension C0/C0: "2599 3676"
|
||||
*PaperDimension C1/C1: "1836 2599"
|
||||
*PaperDimension C2/C2: "1298 1836"
|
||||
*PaperDimension C3/C3: "918 1298"
|
||||
*PaperDimension C4/C4: "649 918"
|
||||
*PaperDimension C5/C5: "459 649"
|
||||
*PaperDimension Env10/Envelope #10: "297 684"
|
||||
*PaperDimension EnvC5/Envelope C5: "459 649"
|
||||
*PaperDimension EnvDL/Envelope DL: "312 624"
|
||||
*PaperDimension EnvMonarch/Envelope Monarch: "279 540"
|
||||
*PaperDimension Executive/Executive: "522 756"
|
||||
*PaperDimension ISOB0/B0 (ISO): "2834 4008"
|
||||
*PaperDimension ISOB1/B1 (ISO): "2004 2834"
|
||||
*PaperDimension ISOB2/B2 (ISO): "1417 2004"
|
||||
*PaperDimension ISOB3/B3 (ISO): "1000 1417"
|
||||
*PaperDimension ISOB4/B4 (ISO): "708 1000"
|
||||
*PaperDimension ISOB5/B5 (ISO): "498 708"
|
||||
*PaperDimension JISB0/B0 (JIS): "2919 4127"
|
||||
*PaperDimension JISB1/B1 (JIS): "2063 2919"
|
||||
*PaperDimension JISB2/B2 (JIS): "1459 2063"
|
||||
*PaperDimension JISB3/B3 (JIS): "1029 1459"
|
||||
*PaperDimension JISB4/B4 (JIS): "727 1029"
|
||||
*PaperDimension JISB5/B5 (JIS): "518 727"
|
||||
*PaperDimension Ledger/Ledger: "1224 792"
|
||||
*PaperDimension Legal/US Legal: "612 1008"
|
||||
*PaperDimension Letter/US Letter: "612 792"
|
||||
*PaperDimension RA0/RA0: "2437 3458"
|
||||
*PaperDimension RA1/RA1: "1729 2437"
|
||||
*PaperDimension RA2/RA2: "1218 1729"
|
||||
*PaperDimension RA3/RA3: "864 1218"
|
||||
*PaperDimension RA4/RA4: "609 864"
|
||||
*PaperDimension SRA0/SRA0: "2551 3628"
|
||||
*PaperDimension SRA1/SRA1: "1814 2551"
|
||||
*PaperDimension SRA2/SRA2: "1275 1814"
|
||||
*PaperDimension SRA3/SRA3: "907 1275"
|
||||
*PaperDimension SRA4/SRA4: "637 907"
|
||||
*PaperDimension SuperA/Super A: "644 1008"
|
||||
*PaperDimension SuperB/Super B: "936 1368"
|
||||
*PaperDimension TabloidExtra/Tabloid Extra: "864 1296"
|
||||
*PaperDimension Tabloid/Tabloid: "792 1224"
|
||||
|
||||
*OpenUI *Resolution/Output Resolution: PickOne
|
||||
*OrderDependency: 100 AnySetup *Resolution
|
||||
*DefaultResolution: 600dpi
|
||||
*Resolution 150dpi/150 DPI: "<</HWResolution[150 150]>>setpagedevice"
|
||||
*Resolution 300dpi/300 DPI: "<</HWResolution[300 300]>>setpagedevice"
|
||||
*Resolution 600dpi/600 DPI: "<</HWResolution[600 600]>>setpagedevice"
|
||||
*Resolution 1200dpi/1200 DPI: "<</HWResolution[1200 1200]>>setpagedevice"
|
||||
*Resolution 2400dpi/2400 DPI: "<</HWResolution[2400 2400]>>setpagedevice"
|
||||
*CloseUI: *Resolution
|
||||
|
||||
*CloseGroup: General
|
||||
|
||||
*DefaultFont: Courier
|
||||
*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
|
||||
*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
|
||||
*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
|
||||
*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
|
||||
*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
|
||||
*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
|
||||
*Font Bookman-Light: Standard "(001.004S)" Standard ROM
|
||||
*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
|
||||
*Font Courier: Standard "(002.004S)" Standard ROM
|
||||
*Font Courier-Bold: Standard "(002.004S)" Standard ROM
|
||||
*Font Courier-BoldOblique: Standard "(002.004S)" Standard ROM
|
||||
*Font Courier-Oblique: Standard "(002.004S)" Standard ROM
|
||||
*Font Helvetica: Standard "(001.006S)" Standard ROM
|
||||
*Font Helvetica-Bold: Standard "(001.007S)" Standard ROM
|
||||
*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard ROM
|
||||
*Font Helvetica-Narrow: Standard "(001.006S)" Standard ROM
|
||||
*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard ROM
|
||||
*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard ROM
|
||||
*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard ROM
|
||||
*Font Helvetica-Oblique: Standard "(001.006S)" Standard ROM
|
||||
*Font NewCenturySchlbk-Bold: Standard "(001.009S)" Standard ROM
|
||||
*Font NewCenturySchlbk-BoldItalic: Standard "(001.007S)" Standard ROM
|
||||
*Font NewCenturySchlbk-Italic: Standard "(001.006S)" Standard ROM
|
||||
*Font NewCenturySchlbk-Roman: Standard "(001.007S)" Standard ROM
|
||||
*Font Palatino-Bold: Standard "(001.005S)" Standard ROM
|
||||
*Font Palatino-BoldItalic: Standard "(001.005S)" Standard ROM
|
||||
*Font Palatino-Italic: Standard "(001.005S)" Standard ROM
|
||||
*Font Palatino-Roman: Standard "(001.005S)" Standard ROM
|
||||
*Font Symbol: Special "(001.007S)" Special ROM
|
||||
*Font Times-Bold: Standard "(001.007S)" Standard ROM
|
||||
*Font Times-BoldItalic: Standard "(001.009S)" Standard ROM
|
||||
*Font Times-Italic: Standard "(001.007S)" Standard ROM
|
||||
*Font Times-Roman: Standard "(001.007S)" Standard ROM
|
||||
*Font ZapfChancery-MediumItalic: Standard "(001.007S)" Standard ROM
|
||||
*Font ZapfDingbats: Special "(001.004S)" Standard ROM
|
||||
*%
|
||||
*% End of "$Id: postscript.ppd,v 1.1.1.1 2000/08/24 19:23:13 goffioul Exp $".
|
||||
*%
|
2256
configfiles/etc/cups/ppd/salle231.ppd
Normal file
2256
configfiles/etc/cups/ppd/salle231.ppd
Normal file
File diff suppressed because it is too large
Load Diff
3555
configfiles/etc/cups/ppd/salle231.ppd.O
Normal file
3555
configfiles/etc/cups/ppd/salle231.ppd.O
Normal file
File diff suppressed because it is too large
Load Diff
160
configfiles/etc/cups/printers.conf
Normal file
160
configfiles/etc/cups/printers.conf
Normal file
@ -0,0 +1,160 @@
|
||||
# Printer configuration file for CUPS v2.2.3
|
||||
# Written by cupsd on 2017-07-05 12:30
|
||||
# DO NOT EDIT THIS FILE WHEN CUPSD IS RUNNING
|
||||
<Printer Salle221>
|
||||
UUID urn:uuid:de74a517-e986-3a91-5a7d-8c0ccc8e47c5
|
||||
Info Salle221
|
||||
Location Salle221
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.11
|
||||
State Idle
|
||||
StateTime 1370942339
|
||||
ConfigTime 1499257069
|
||||
Type 8425484
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer Salle222>
|
||||
UUID urn:uuid:6553a527-69cc-3480-6f6f-9fc1bec4fa4a
|
||||
Info Salle222
|
||||
Location Salle222
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.14
|
||||
State Idle
|
||||
StateTime 1370942554
|
||||
ConfigTime 1499257138
|
||||
Type 8425484
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer Salle224>
|
||||
UUID urn:uuid:e8acef75-970f-31ec-50ce-8884ddd107f1
|
||||
Info Salle224
|
||||
Location Salle224
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.13
|
||||
State Idle
|
||||
StateTime 1370941866
|
||||
ConfigTime 1499257494
|
||||
Type 8425500
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
Attribute marker-colors none
|
||||
Attribute marker-levels 0
|
||||
Attribute marker-names Black Cartridge
|
||||
Attribute marker-types toner
|
||||
Attribute marker-change-time 1370941866
|
||||
</Printer>
|
||||
<Printer Salle225>
|
||||
UUID urn:uuid:21755468-8306-3c58-5569-12d20e077633
|
||||
Info Salle225
|
||||
Location Salle225
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.15
|
||||
State Idle
|
||||
StateTime 1370943381
|
||||
ConfigTime 1499257535
|
||||
Type 8425484
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer Salle229>
|
||||
UUID urn:uuid:f8fd941d-2825-3314-48ba-00586af49bae
|
||||
Info Salle229
|
||||
Location Salle229
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.16
|
||||
State Idle
|
||||
StateTime 1370941983
|
||||
ConfigTime 1499257686
|
||||
Type 8425484
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer salle231>
|
||||
UUID urn:uuid:4a99ce3f-fcbe-3ca8-7e41-c615bb428274
|
||||
Info Salle231
|
||||
Location salle231
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.17
|
||||
State Idle
|
||||
StateTime 1370942106
|
||||
ConfigTime 1499257725
|
||||
Type 8425484
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer Salle235>
|
||||
UUID urn:uuid:c3bae065-6c80-3a5a-5c8d-f3a2e1873d9f
|
||||
Info Salle235
|
||||
Location Salle235
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.19
|
||||
State Idle
|
||||
StateTime 1370943665
|
||||
ConfigTime 1499257773
|
||||
Type 8425500
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer Virtual_PDF_Printer>
|
||||
UUID urn:uuid:63f532cd-05a9-372d-5228-19c0252c952f
|
||||
Info Virtual PDF Printer
|
||||
MakeModel Generic CUPS-PDF Printer
|
||||
DeviceURI cups-pdf:/
|
||||
State Stopped
|
||||
StateMessage Backend /usr/lib/cups/backend/cups-pdf does not exist!
|
||||
StateTime 1370942185
|
||||
ConfigTime 1499256922
|
||||
Type 8450124
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
160
configfiles/etc/cups/printers.conf.O
Normal file
160
configfiles/etc/cups/printers.conf.O
Normal file
@ -0,0 +1,160 @@
|
||||
# Printer configuration file for CUPS v2.2.3
|
||||
# Written by cupsd on 2017-07-05 12:29
|
||||
# DO NOT EDIT THIS FILE WHEN CUPSD IS RUNNING
|
||||
<Printer Salle221>
|
||||
UUID urn:uuid:de74a517-e986-3a91-5a7d-8c0ccc8e47c5
|
||||
Info Salle221
|
||||
Location Salle221
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.12
|
||||
State Idle
|
||||
StateTime 1370942339
|
||||
ConfigTime 1499257069
|
||||
Type 8425484
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer Salle222>
|
||||
UUID urn:uuid:6553a527-69cc-3480-6f6f-9fc1bec4fa4a
|
||||
Info Salle222
|
||||
Location Salle222
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.12
|
||||
State Idle
|
||||
StateTime 1370942554
|
||||
ConfigTime 1499257138
|
||||
Type 8425484
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer Salle224>
|
||||
UUID urn:uuid:e8acef75-970f-31ec-50ce-8884ddd107f1
|
||||
Info Salle224
|
||||
Location Salle224
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.13
|
||||
State Idle
|
||||
StateTime 1370941866
|
||||
ConfigTime 1499257494
|
||||
Type 8425500
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
Attribute marker-colors none
|
||||
Attribute marker-levels 0
|
||||
Attribute marker-names Black Cartridge
|
||||
Attribute marker-types toner
|
||||
Attribute marker-change-time 1370941866
|
||||
</Printer>
|
||||
<Printer Salle225>
|
||||
UUID urn:uuid:21755468-8306-3c58-5569-12d20e077633
|
||||
Info Salle225
|
||||
Location Salle225
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.15
|
||||
State Idle
|
||||
StateTime 1370943381
|
||||
ConfigTime 1499257535
|
||||
Type 8425484
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer Salle229>
|
||||
UUID urn:uuid:f8fd941d-2825-3314-48ba-00586af49bae
|
||||
Info Salle229
|
||||
Location Salle229
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.16
|
||||
State Idle
|
||||
StateTime 1370941983
|
||||
ConfigTime 1499257686
|
||||
Type 8425484
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer salle231>
|
||||
UUID urn:uuid:4a99ce3f-fcbe-3ca8-7e41-c615bb428274
|
||||
Info Salle231
|
||||
Location salle231
|
||||
MakeModel HP Color LaserJet Pro M252 Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.17
|
||||
State Idle
|
||||
StateTime 1370942106
|
||||
ConfigTime 1499257725
|
||||
Type 8425484
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer Salle235>
|
||||
UUID urn:uuid:c3bae065-6c80-3a5a-5c8d-f3a2e1873d9f
|
||||
Info Salle235
|
||||
Location Salle235
|
||||
MakeModel HP LaserJet P3010 Series Postscript (recommended)
|
||||
DeviceURI socket://172.16.1.19
|
||||
State Idle
|
||||
StateTime 1370943665
|
||||
ConfigTime 1499256922
|
||||
Type 8425684
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
||||
<Printer Virtual_PDF_Printer>
|
||||
UUID urn:uuid:63f532cd-05a9-372d-5228-19c0252c952f
|
||||
Info Virtual PDF Printer
|
||||
MakeModel Generic CUPS-PDF Printer
|
||||
DeviceURI cups-pdf:/
|
||||
State Stopped
|
||||
StateMessage Backend /usr/lib/cups/backend/cups-pdf does not exist!
|
||||
StateTime 1370942185
|
||||
ConfigTime 1499256922
|
||||
Type 8450124
|
||||
Accepting Yes
|
||||
Shared No
|
||||
JobSheets none none
|
||||
QuotaPeriod 0
|
||||
PageLimit 0
|
||||
KLimit 0
|
||||
OpPolicy default
|
||||
ErrorPolicy stop-printer
|
||||
</Printer>
|
13
configfiles/etc/cups/snmp.conf
Normal file
13
configfiles/etc/cups/snmp.conf
Normal file
@ -0,0 +1,13 @@
|
||||
#
|
||||
# "$Id: snmp.conf.in 9045 2010-03-24 07:48:42Z mike $"
|
||||
#
|
||||
# Sample SNMP configuration file for CUPS. See "man cups-snmp.conf" for a
|
||||
# complete description of this file.
|
||||
#
|
||||
|
||||
Address @LOCAL
|
||||
Community public
|
||||
|
||||
#
|
||||
# End of "$Id: snmp.conf.in 9045 2010-03-24 07:48:42Z mike $".
|
||||
#
|
7
configfiles/etc/cups/snmp.conf.default
Normal file
7
configfiles/etc/cups/snmp.conf.default
Normal file
@ -0,0 +1,7 @@
|
||||
#
|
||||
# SNMP configuration file for CUPS. See "man cups-snmp.conf" for a complete
|
||||
# description of this file.
|
||||
#
|
||||
|
||||
Address @LOCAL
|
||||
Community public
|
0
configfiles/etc/cups/subscriptions.conf
Normal file
0
configfiles/etc/cups/subscriptions.conf
Normal file
21
configfiles/etc/krb5.conf
Normal file
21
configfiles/etc/krb5.conf
Normal file
@ -0,0 +1,21 @@
|
||||
[libdefaults]
|
||||
default_realm = ARDA.LAN
|
||||
dns_lookup_realm = true
|
||||
dns_lookup_kdc = true
|
||||
default_ccache_name = /run/user/%{uid}/krb5cc
|
||||
|
||||
[realms]
|
||||
ARDA.LAN = {
|
||||
default_domain = ARDA.LAN
|
||||
}
|
||||
|
||||
[domain_realm]
|
||||
.arda.lan = ARDA.LAN
|
||||
|
||||
[appdefaults]
|
||||
pam = {
|
||||
ticket_lifetime = 1d
|
||||
renew_lifetime = 1d
|
||||
forwardable = true
|
||||
proxiable = false
|
||||
}
|
64
configfiles/etc/lightdm/Xsession
Normal file
64
configfiles/etc/lightdm/Xsession
Normal file
@ -0,0 +1,64 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# LightDM wrapper to run around X sessions.
|
||||
|
||||
echo "Running X session wrapper"
|
||||
|
||||
# Load profile
|
||||
for file in "/etc/profile" "$HOME/.profile" "/etc/xprofile" "$HOME/.xprofile"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading profile from $file";
|
||||
. "$file"
|
||||
fi
|
||||
done
|
||||
|
||||
# Load resources
|
||||
for file in "/etc/X11/Xresources" "$HOME/.Xresources"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading resource: $file"
|
||||
xrdb -merge "$file"
|
||||
fi
|
||||
done
|
||||
|
||||
# Load keymaps
|
||||
for file in "/etc/X11/Xkbmap" "$HOME/.Xkbmap"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading keymap: $file"
|
||||
setxkbmap `cat "$file"`
|
||||
XKB_IN_USE=yes
|
||||
fi
|
||||
done
|
||||
|
||||
# Load xmodmap if not using XKB
|
||||
if [ -z "$XKB_IN_USE" ]; then
|
||||
for file in "/etc/X11/Xmodmap" "$HOME/.Xmodmap"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "Loading modmap: $file"
|
||||
xmodmap "$file"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
unset XKB_IN_USE
|
||||
|
||||
# Run all system xinitrc shell scripts
|
||||
xinitdir="/etc/X11/xinit/xinitrc.d"
|
||||
if [ -d "$xinitdir" ]; then
|
||||
for script in $xinitdir/*; do
|
||||
echo "Loading xinit script $script"
|
||||
if [ -x "$script" -a ! -d "$script" ]; then
|
||||
. "$script"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
# Run user xsession shell script
|
||||
script="$HOME/.xsession"
|
||||
if [ -x "$script" -a ! -d "$script" ]; then
|
||||
echo "Loading xsession script $script"
|
||||
. "$script"
|
||||
fi
|
||||
|
||||
echo "X session wrapper complete, running session $@"
|
||||
|
||||
exec $@
|
3
configfiles/etc/lightdm/keys.conf
Normal file
3
configfiles/etc/lightdm/keys.conf
Normal file
@ -0,0 +1,3 @@
|
||||
[keyring]
|
||||
#a=0x0123456789ABCD
|
||||
#b=secret
|
8
configfiles/etc/lightdm/lightdm-gtk-greeter.conf
Normal file
8
configfiles/etc/lightdm/lightdm-gtk-greeter.conf
Normal file
@ -0,0 +1,8 @@
|
||||
[greeter]
|
||||
allow-debugging = true
|
||||
theme-name = Adwaita-dark
|
||||
background = /usr/share/pixmaps/iut.png
|
||||
user-background = false
|
||||
hide-user-image = true
|
||||
indicators = ~clock;~spacer;~host;~spacer;~language;~a11y;~power
|
||||
|
65
configfiles/etc/lightdm/lightdm-gtk-greeter.conf.default
Normal file
65
configfiles/etc/lightdm/lightdm-gtk-greeter.conf.default
Normal file
@ -0,0 +1,65 @@
|
||||
# LightDM GTK+ Configuration
|
||||
# Available configuration options listed below.
|
||||
#
|
||||
# Appearance:
|
||||
# theme-name = GTK+ theme to use
|
||||
# icon-theme-name = Icon theme to use
|
||||
# cursor-theme-name = Cursor theme to use
|
||||
# cursor-theme-size = Cursor size to use
|
||||
# background = Background file to use, either an image path or a color (e.g. #772953)
|
||||
# user-background = false|true ("true" by default) Display user background (if available)
|
||||
# transition-duration = Length of time (in milliseconds) to transition between background images ("500" by default)
|
||||
# transition-type = ease-in-out|linear|none ("ease-in-out" by default)
|
||||
#
|
||||
# Fonts:
|
||||
# font-name = Font to use
|
||||
# xft-antialias = false|true Whether to antialias Xft fonts
|
||||
# xft-dpi = Resolution for Xft in dots per inch (e.g. 96)
|
||||
# xft-hintstyle = none|slight|medium|hintfull What degree of hinting to use
|
||||
# xft-rgba = none|rgb|bgr|vrgb|vbgr Type of subpixel antialiasing
|
||||
#
|
||||
# Login window:
|
||||
# active-monitor = Monitor to display greeter window (name or number). Use #cursor value to display greeter at monitor with cursor. Can be a semicolon separated list
|
||||
# position = x y ("50% 50%" by default) Login window position
|
||||
# default-user-image = Image used as default user icon, path or #icon-name
|
||||
# hide-user-image = false|true ("false" by default)
|
||||
#
|
||||
# Panel:
|
||||
# panel-position = top|bottom ("top" by default)
|
||||
# clock-format = strftime-format string, e.g. %H:%M
|
||||
# indicators = semi-colon ";" separated list of allowed indicator modules. Built-in indicators include "~a11y", "~language", "~session", "~power", "~clock", "~host", "~spacer". Unity indicators can be represented by short name (e.g. "sound", "power"), service file name, or absolute path
|
||||
#
|
||||
# Accessibility:
|
||||
# a11y-states = states of accessibility features: "name" - save state on exit, "-name" - disabled at start (default value for unlisted), "+name" - enabled at start. Allowed names: contrast, font, keyboard, reader.
|
||||
# keyboard = command to launch on-screen keyboard (e.g. "onboard")
|
||||
# keyboard-position = x y[;width height] ("50%,center -0;50% 25%" by default) Works only for "onboard"
|
||||
# reader = command to launch screen reader (e.g. "orca")
|
||||
# at-spi-enabled = false|true ("true" by default) Enables accessibility at-spi-command if the greeter is built with it enabled
|
||||
#
|
||||
# Security:
|
||||
# allow-debugging = false|true ("false" by default)
|
||||
# screensaver-timeout = Timeout (in seconds) until the screen blanks when the greeter is called as lockscreen
|
||||
#
|
||||
# Template for per-monitor configuration:
|
||||
# [monitor: name]
|
||||
# background = overrides default value
|
||||
# user-background = overrides default value
|
||||
# laptop = false|true ("false" by default) Marks monitor as laptop display
|
||||
# transition-duration = overrides default value
|
||||
#
|
||||
[greeter]
|
||||
#background=
|
||||
#user-background=
|
||||
#theme-name=
|
||||
#icon-theme-name=
|
||||
#font-name=
|
||||
#xft-antialias=
|
||||
#xft-dpi=
|
||||
#xft-hintstyle=
|
||||
#xft-rgba=
|
||||
#indicators=
|
||||
#clock-format=
|
||||
#keyboard=
|
||||
#reader=
|
||||
#position=
|
||||
#screensaver-timeout=
|
163
configfiles/etc/lightdm/lightdm.conf
Normal file
163
configfiles/etc/lightdm/lightdm.conf
Normal file
@ -0,0 +1,163 @@
|
||||
#
|
||||
# General configuration
|
||||
#
|
||||
# start-default-seat = True to always start one seat if none are defined in the configuration
|
||||
# greeter-user = User to run greeter as
|
||||
# minimum-display-number = Minimum display number to use for X servers
|
||||
# minimum-vt = First VT to run displays on
|
||||
# lock-memory = True to prevent memory from being paged to disk
|
||||
# user-authority-in-system-dir = True if session authority should be in the system location
|
||||
# guest-account-script = Script to be run to setup guest account
|
||||
# logind-check-graphical = True to on start seats that are marked as graphical by logind
|
||||
# log-directory = Directory to log information to
|
||||
# run-directory = Directory to put running state in
|
||||
# cache-directory = Directory to cache to
|
||||
# sessions-directory = Directory to find sessions
|
||||
# remote-sessions-directory = Directory to find remote sessions
|
||||
# greeters-directory = Directory to find greeters
|
||||
# backup-logs = True to move add a .old suffix to old log files when opening new ones
|
||||
# dbus-service = True if LightDM provides a D-Bus service to control it
|
||||
#
|
||||
[LightDM]
|
||||
#start-default-seat=true
|
||||
#greeter-user=lightdm
|
||||
#minimum-display-number=0
|
||||
#minimum-vt=7 # Setting this to a value < 7 implies security issues, see FS#46799
|
||||
#lock-memory=true
|
||||
#user-authority-in-system-dir=false
|
||||
#guest-account-script=guest-account
|
||||
#logind-check-graphical=false
|
||||
#log-directory=/var/log/lightdm
|
||||
run-directory=/run/lightdm
|
||||
#cache-directory=/var/cache/lightdm
|
||||
#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions
|
||||
#remote-sessions-directory=/usr/share/lightdm/remote-sessions
|
||||
#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters
|
||||
#backup-logs=true
|
||||
#dbus-service=true
|
||||
|
||||
#
|
||||
# Seat configuration
|
||||
#
|
||||
# Seat configuration is matched against the seat name glob in the section, for example:
|
||||
# [Seat:*] matches all seats and is applied first.
|
||||
# [Seat:seat0] matches the seat named "seat0".
|
||||
# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client".
|
||||
#
|
||||
# type = Seat type (local, xremote)
|
||||
# pam-service = PAM service to use for login
|
||||
# pam-autologin-service = PAM service to use for autologin
|
||||
# pam-greeter-service = PAM service to use for greeters
|
||||
# xserver-command = X server command to run (can also contain arguments e.g. X -special-option)
|
||||
# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option)
|
||||
# xserver-config = Config file to pass to X server
|
||||
# xserver-layout = Layout to pass to X server
|
||||
# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server
|
||||
# xserver-share = True if the X server is shared for both greeter and session
|
||||
# xserver-hostname = Hostname of X server (only for type=xremote)
|
||||
# xserver-display-number = Display number of X server (only for type=xremote)
|
||||
# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true)
|
||||
# xdmcp-port = XDMCP UDP/IP port to communicate on
|
||||
# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf)
|
||||
# greeter-session = Session to load for greeter
|
||||
# greeter-hide-users = True to hide the user list
|
||||
# greeter-allow-guest = True if the greeter should show a guest login option
|
||||
# greeter-show-manual-login = True if the greeter should offer a manual login option
|
||||
# greeter-show-remote-login = True if the greeter should offer a remote login option
|
||||
# user-session = Session to load for users
|
||||
# allow-user-switching = True if allowed to switch users
|
||||
# allow-guest = True if guest login is allowed
|
||||
# guest-session = Session to load for guests (overrides user-session)
|
||||
# session-wrapper = Wrapper script to run session with
|
||||
# greeter-wrapper = Wrapper script to run greeter with
|
||||
# guest-wrapper = Wrapper script to run guest sessions with
|
||||
# display-setup-script = Script to run when starting a greeter session (runs as root)
|
||||
# display-stopped-script = Script to run after stopping the display server (runs as root)
|
||||
# greeter-setup-script = Script to run when starting a greeter (runs as root)
|
||||
# session-setup-script = Script to run when starting a user session (runs as root)
|
||||
# session-cleanup-script = Script to run when quitting a user session (runs as root)
|
||||
# autologin-guest = True to log in as guest by default
|
||||
# autologin-user = User to log in with by default (overrides autologin-guest)
|
||||
# autologin-user-timeout = Number of seconds to wait before loading default user
|
||||
# autologin-session = Session to load for automatic login (overrides user-session)
|
||||
# autologin-in-background = True if autologin session should not be immediately activated
|
||||
# exit-on-failure = True if the daemon should exit if this seat fails
|
||||
#
|
||||
[Seat:*]
|
||||
#type=local
|
||||
#pam-service=lightdm
|
||||
#pam-autologin-service=lightdm-autologin
|
||||
#pam-greeter-service=lightdm-greeter
|
||||
#xserver-command=X
|
||||
#xmir-command=Xmir
|
||||
#xserver-config=
|
||||
#xserver-layout=
|
||||
#xserver-allow-tcp=false
|
||||
#xserver-share=true
|
||||
#xserver-hostname=
|
||||
#xserver-display-number=
|
||||
#xdmcp-manager=
|
||||
#xdmcp-port=177
|
||||
#xdmcp-key=
|
||||
greeter-session=lightdm-gtk-greeter
|
||||
greeter-hide-users=true
|
||||
#greeter-allow-guest=true
|
||||
#greeter-show-manual-login=false
|
||||
#greeter-show-remote-login=true
|
||||
#user-session=default
|
||||
#allow-user-switching=true
|
||||
#allow-guest=true
|
||||
#guest-session=
|
||||
session-wrapper=/etc/lightdm/Xsession
|
||||
#greeter-wrapper=
|
||||
#guest-wrapper=
|
||||
#display-setup-script=
|
||||
#display-stopped-script=
|
||||
#greeter-setup-script=/usr/bin/numlockx on
|
||||
#session-setup-script=
|
||||
#session-cleanup-script=
|
||||
#autologin-guest=false
|
||||
#autologin-user=
|
||||
#autologin-user-timeout=0
|
||||
#autologin-in-background=false
|
||||
#autologin-session=
|
||||
#exit-on-failure=false
|
||||
|
||||
#
|
||||
# XDMCP Server configuration
|
||||
#
|
||||
# enabled = True if XDMCP connections should be allowed
|
||||
# port = UDP/IP port to listen for connections on
|
||||
# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present)
|
||||
# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf)
|
||||
# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset)
|
||||
#
|
||||
# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively
|
||||
# it can be a word and the first 7 characters are used as the key.
|
||||
#
|
||||
[XDMCPServer]
|
||||
#enabled=false
|
||||
#port=177
|
||||
#listen-address=
|
||||
#key=
|
||||
#hostname=
|
||||
|
||||
#
|
||||
# VNC Server configuration
|
||||
#
|
||||
# enabled = True if VNC connections should be allowed
|
||||
# command = Command to run Xvnc server with
|
||||
# port = TCP/IP port to listen for connections on
|
||||
# listen-address = Host/address to listen for VNC connections (use all addresses if not present)
|
||||
# width = Width of display to use
|
||||
# height = Height of display to use
|
||||
# depth = Color depth of display to use
|
||||
#
|
||||
[VNCServer]
|
||||
#enabled=false
|
||||
#command=Xvnc
|
||||
#port=5900
|
||||
#listen-address=
|
||||
#width=1024
|
||||
#height=768
|
||||
#depth=8
|
163
configfiles/etc/lightdm/lightdm.conf.default
Normal file
163
configfiles/etc/lightdm/lightdm.conf.default
Normal file
@ -0,0 +1,163 @@
|
||||
#
|
||||
# General configuration
|
||||
#
|
||||
# start-default-seat = True to always start one seat if none are defined in the configuration
|
||||
# greeter-user = User to run greeter as
|
||||
# minimum-display-number = Minimum display number to use for X servers
|
||||
# minimum-vt = First VT to run displays on
|
||||
# lock-memory = True to prevent memory from being paged to disk
|
||||
# user-authority-in-system-dir = True if session authority should be in the system location
|
||||
# guest-account-script = Script to be run to setup guest account
|
||||
# logind-check-graphical = True to on start seats that are marked as graphical by logind
|
||||
# log-directory = Directory to log information to
|
||||
# run-directory = Directory to put running state in
|
||||
# cache-directory = Directory to cache to
|
||||
# sessions-directory = Directory to find sessions
|
||||
# remote-sessions-directory = Directory to find remote sessions
|
||||
# greeters-directory = Directory to find greeters
|
||||
# backup-logs = True to move add a .old suffix to old log files when opening new ones
|
||||
# dbus-service = True if LightDM provides a D-Bus service to control it
|
||||
#
|
||||
[LightDM]
|
||||
#start-default-seat=true
|
||||
#greeter-user=lightdm
|
||||
#minimum-display-number=0
|
||||
#minimum-vt=7 # Setting this to a value < 7 implies security issues, see FS#46799
|
||||
#lock-memory=true
|
||||
#user-authority-in-system-dir=false
|
||||
#guest-account-script=guest-account
|
||||
#logind-check-graphical=false
|
||||
#log-directory=/var/log/lightdm
|
||||
run-directory=/run/lightdm
|
||||
#cache-directory=/var/cache/lightdm
|
||||
#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions
|
||||
#remote-sessions-directory=/usr/share/lightdm/remote-sessions
|
||||
#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters
|
||||
#backup-logs=true
|
||||
#dbus-service=true
|
||||
|
||||
#
|
||||
# Seat configuration
|
||||
#
|
||||
# Seat configuration is matched against the seat name glob in the section, for example:
|
||||
# [Seat:*] matches all seats and is applied first.
|
||||
# [Seat:seat0] matches the seat named "seat0".
|
||||
# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client".
|
||||
#
|
||||
# type = Seat type (local, xremote)
|
||||
# pam-service = PAM service to use for login
|
||||
# pam-autologin-service = PAM service to use for autologin
|
||||
# pam-greeter-service = PAM service to use for greeters
|
||||
# xserver-command = X server command to run (can also contain arguments e.g. X -special-option)
|
||||
# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option)
|
||||
# xserver-config = Config file to pass to X server
|
||||
# xserver-layout = Layout to pass to X server
|
||||
# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server
|
||||
# xserver-share = True if the X server is shared for both greeter and session
|
||||
# xserver-hostname = Hostname of X server (only for type=xremote)
|
||||
# xserver-display-number = Display number of X server (only for type=xremote)
|
||||
# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true)
|
||||
# xdmcp-port = XDMCP UDP/IP port to communicate on
|
||||
# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf)
|
||||
# greeter-session = Session to load for greeter
|
||||
# greeter-hide-users = True to hide the user list
|
||||
# greeter-allow-guest = True if the greeter should show a guest login option
|
||||
# greeter-show-manual-login = True if the greeter should offer a manual login option
|
||||
# greeter-show-remote-login = True if the greeter should offer a remote login option
|
||||
# user-session = Session to load for users
|
||||
# allow-user-switching = True if allowed to switch users
|
||||
# allow-guest = True if guest login is allowed
|
||||
# guest-session = Session to load for guests (overrides user-session)
|
||||
# session-wrapper = Wrapper script to run session with
|
||||
# greeter-wrapper = Wrapper script to run greeter with
|
||||
# guest-wrapper = Wrapper script to run guest sessions with
|
||||
# display-setup-script = Script to run when starting a greeter session (runs as root)
|
||||
# display-stopped-script = Script to run after stopping the display server (runs as root)
|
||||
# greeter-setup-script = Script to run when starting a greeter (runs as root)
|
||||
# session-setup-script = Script to run when starting a user session (runs as root)
|
||||
# session-cleanup-script = Script to run when quitting a user session (runs as root)
|
||||
# autologin-guest = True to log in as guest by default
|
||||
# autologin-user = User to log in with by default (overrides autologin-guest)
|
||||
# autologin-user-timeout = Number of seconds to wait before loading default user
|
||||
# autologin-session = Session to load for automatic login (overrides user-session)
|
||||
# autologin-in-background = True if autologin session should not be immediately activated
|
||||
# exit-on-failure = True if the daemon should exit if this seat fails
|
||||
#
|
||||
[Seat:*]
|
||||
#type=local
|
||||
#pam-service=lightdm
|
||||
#pam-autologin-service=lightdm-autologin
|
||||
#pam-greeter-service=lightdm-greeter
|
||||
#xserver-command=X
|
||||
#xmir-command=Xmir
|
||||
#xserver-config=
|
||||
#xserver-layout=
|
||||
#xserver-allow-tcp=false
|
||||
#xserver-share=true
|
||||
#xserver-hostname=
|
||||
#xserver-display-number=
|
||||
#xdmcp-manager=
|
||||
#xdmcp-port=177
|
||||
#xdmcp-key=
|
||||
#greeter-session=example-gtk-gnome
|
||||
#greeter-hide-users=false
|
||||
#greeter-allow-guest=true
|
||||
#greeter-show-manual-login=false
|
||||
#greeter-show-remote-login=true
|
||||
#user-session=default
|
||||
#allow-user-switching=true
|
||||
#allow-guest=true
|
||||
#guest-session=
|
||||
session-wrapper=/etc/lightdm/Xsession
|
||||
#greeter-wrapper=
|
||||
#guest-wrapper=
|
||||
#display-setup-script=
|
||||
#display-stopped-script=
|
||||
#greeter-setup-script=
|
||||
#session-setup-script=
|
||||
#session-cleanup-script=
|
||||
#autologin-guest=false
|
||||
#autologin-user=
|
||||
#autologin-user-timeout=0
|
||||
#autologin-in-background=false
|
||||
#autologin-session=
|
||||
#exit-on-failure=false
|
||||
|
||||
#
|
||||
# XDMCP Server configuration
|
||||
#
|
||||
# enabled = True if XDMCP connections should be allowed
|
||||
# port = UDP/IP port to listen for connections on
|
||||
# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present)
|
||||
# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf)
|
||||
# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset)
|
||||
#
|
||||
# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively
|
||||
# it can be a word and the first 7 characters are used as the key.
|
||||
#
|
||||
[XDMCPServer]
|
||||
#enabled=false
|
||||
#port=177
|
||||
#listen-address=
|
||||
#key=
|
||||
#hostname=
|
||||
|
||||
#
|
||||
# VNC Server configuration
|
||||
#
|
||||
# enabled = True if VNC connections should be allowed
|
||||
# command = Command to run Xvnc server with
|
||||
# port = TCP/IP port to listen for connections on
|
||||
# listen-address = Host/address to listen for VNC connections (use all addresses if not present)
|
||||
# width = Width of display to use
|
||||
# height = Height of display to use
|
||||
# depth = Color depth of display to use
|
||||
#
|
||||
[VNCServer]
|
||||
#enabled=false
|
||||
#command=Xvnc
|
||||
#port=5900
|
||||
#listen-address=
|
||||
#width=1024
|
||||
#height=768
|
||||
#depth=8
|
14
configfiles/etc/lightdm/users.conf
Normal file
14
configfiles/etc/lightdm/users.conf
Normal file
@ -0,0 +1,14 @@
|
||||
#
|
||||
# User accounts configuration
|
||||
#
|
||||
# NOTE: If you have AccountsService installed on your system, then LightDM will
|
||||
# use this instead and these settings will be ignored
|
||||
#
|
||||
# minimum-uid = Minimum UID required to be shown in greeter
|
||||
# hidden-users = Users that are not shown to the user
|
||||
# hidden-shells = Shells that indicate a user cannot login
|
||||
#
|
||||
[UserList]
|
||||
minimum-uid=1000
|
||||
hidden-users=nobody nobody4 noaccess
|
||||
hidden-shells=/bin/false /usr/bin/nologin /bin/nologin
|
2
configfiles/etc/modprobe.d/snd-blacklist.conf
Normal file
2
configfiles/etc/modprobe.d/snd-blacklist.conf
Normal file
@ -0,0 +1,2 @@
|
||||
blacklist pcspkr
|
||||
blacklist snd
|
18
configfiles/etc/nsswitch.conf
Normal file
18
configfiles/etc/nsswitch.conf
Normal file
@ -0,0 +1,18 @@
|
||||
# Name Service Switch configuration file.
|
||||
# See nsswitch.conf(5) for details.
|
||||
|
||||
passwd: files winbind systemd
|
||||
group: files [SUCCESS=merge] winbind systemd
|
||||
shadow: files systemd
|
||||
|
||||
publickey: files
|
||||
|
||||
hosts: mymachines resolve [!UNAVAIL=return] files myhostname dns
|
||||
networks: files
|
||||
|
||||
protocols: files
|
||||
services: files
|
||||
ethers: files
|
||||
rpc: files
|
||||
|
||||
netgroup: files
|
6
configfiles/etc/pam.d/chfn
Normal file
6
configfiles/etc/pam.d/chfn
Normal file
@ -0,0 +1,6 @@
|
||||
#%PAM-1.0
|
||||
auth sufficient pam_rootok.so
|
||||
auth required pam_unix.so
|
||||
account required pam_unix.so
|
||||
session required pam_unix.so
|
||||
password required pam_permit.so
|
4
configfiles/etc/pam.d/chpasswd
Normal file
4
configfiles/etc/pam.d/chpasswd
Normal file
@ -0,0 +1,4 @@
|
||||
#%PAM-1.0
|
||||
auth sufficient pam_rootok.so
|
||||
account required pam_permit.so
|
||||
password include system-auth
|
6
configfiles/etc/pam.d/chsh
Normal file
6
configfiles/etc/pam.d/chsh
Normal file
@ -0,0 +1,6 @@
|
||||
#%PAM-1.0
|
||||
auth sufficient pam_rootok.so
|
||||
auth required pam_unix.so
|
||||
account required pam_unix.so
|
||||
session required pam_unix.so
|
||||
password required pam_permit.so
|
4
configfiles/etc/pam.d/groupmems
Normal file
4
configfiles/etc/pam.d/groupmems
Normal file
@ -0,0 +1,4 @@
|
||||
#%PAM-1.0
|
||||
auth sufficient pam_rootok.so
|
||||
account required pam_permit.so
|
||||
password include system-auth
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user