1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# Impressive PDF Display: Wrap around impressive PDF viewer and turn your
# system into a PDF display screen.
# Login credentials for PDF download URLs can be put here, but we recommend
# putting them into $HOME/.impressive-display/secrets/<display-host>.secret
# Don't forget to set 0600 permissions on the credential files.
# default download URI for all display screens if not configured individually
DEFAULT_PDF_URI="file:///usr/share/doc/impressive-display/impressive-display.pdf.gz"
# Enforce fixed resolution for all displays:
#DEFAULT_RESOLUTION="1920x1080"
# Configure individual display screens with host specific parameters:
#DISPLAYS['display-host-0']="pdf_uri=file:///usr/share/doc/impressive-display/impressive-display.pdf.gz"
#DISPLAYS['display-host-1']="pdf_uri=file:///usr/share/doc/impressive-display/examples/testpage1.pdf.gz"
#DISPLAYS['display-host-2']="pdf_uri=file:///usr/share/doc/impressive-display/examples/testpage2.pdf.gz|res=1024x768"
#DISPLAYS['display-host-3']="pdf_uri=file:///usr/share/doc/impressive-display/examples/testpage3.pdf.gz|res=1280x1024"
#DISPLAYS['other-host-from-web']="pdf_uri=https://some.host.out.there/path/to/infoscreen.pdf"
#### ^^^ use: FAKE_HOSTNAME="display-host-1" impressive-display
### to play with other hostnames and their PDF URI / resolution settings...
# HTTP proxy URL, if needed.
#HTTP_PROXY_URL="http://webcache:3128"
# Idle interval between PDF downloads, set this to "0" for
# disabling regular re-downloads of the remote URL's PDF document.
#DOWNLOAD_INTERVAL="600"
# During rush hours check PDF file on remote URL more often
#RUSH_HOURS="07-11"
#RUSH_HOURS_DOWNLOAD_INTERVAL="180"
# Disable PDF downloads at night time completely...
#SLEEP_HOURS="22-06"
#SLEEP_HOURS_DOWNLOAD_INTERVAL="0"
# log to syslog instead of .xsession-errors
#LOG_TO_SYSLOG="no"
# Enable debugging of regular downloads (must be a non-empty string).
#DEBUG_DOWNLOADS=""
# Show each slide for <n> seconds.
#SLIDE_DURATION=20
# Launch pulseaudio daemon if not already running.
#WITH_PULSEAUDIO="yes"
# Hide idle mouse pointer.
#HIDE_IDLE_POINTER="yes"
# screensaver settings, see "man 1 xset" for possible options
#SCREENSAVER_SETTINGS=""
# Put impressive's fading options in the below variable...
# On GL systems use: --supersample -k --transition PagePeel
#IMPRESSIVE_OPTIONS="--transition None"
|