diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-11-18 12:26:41 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-11-18 12:26:41 +0100 |
commit | 9005a4b87f676d2805ccc65830403e9d798408cb (patch) | |
tree | da514f6682b10e2bbe9af68de98e56fa083a1462 | |
parent | b90ff3fd9e2944b5f825bfba62a84adff1c178a1 (diff) | |
download | impressive-display-9005a4b87f676d2805ccc65830403e9d798408cb.tar.gz impressive-display-9005a4b87f676d2805ccc65830403e9d798408cb.tar.bz2 impressive-display-9005a4b87f676d2805ccc65830403e9d798408cb.zip |
Prepend file:// to file name in DEFAULT_PDF_URI (hard-coded).
-rwxr-xr-x | bin/impressive-display | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/impressive-display b/bin/impressive-display index e6b95a4..977c4f3 100755 --- a/bin/impressive-display +++ b/bin/impressive-display @@ -42,8 +42,9 @@ DEFAULT_PDF_URL_CREDS="" declare -A CREDS # Can be configured at "/etc/default/impressive-display" -DEFAULT_PDF_URI="/usr/share/doc/impressive-display/examples/testpage1.pdf" -DEFAULT_RESOLUTION="1920x1080" +# FIXME: use LaTeX Beamer based presentation file that documents impressive-display. +DEFAULT_PDF_URI="file:///usr/share/doc/impressive-display/examples/testpage1.pdf" +DEFAULT_RESOLUTION="" # all displays that need to be changed declare -A DISPLAYS |