diff options
author | DanielsLPecke <daniel.letsplay007@gmail.com> | 2016-11-14 13:37:35 +0100 |
---|---|---|
committer | DanielsLPecke <daniel.letsplay007@gmail.com> | 2016-11-14 13:46:27 +0100 |
commit | 2bb7f687a4a0c37acda111fee8cb76147abfa64c (patch) | |
tree | 628e3d48abc1db96f8bd3d30297ba6de051ab3ee | |
parent | 475c3f1b2e487b0e26ba15ee6e2c06cc69ef43e1 (diff) | |
download | impressive-display-2bb7f687a4a0c37acda111fee8cb76147abfa64c.tar.gz impressive-display-2bb7f687a4a0c37acda111fee8cb76147abfa64c.tar.bz2 impressive-display-2bb7f687a4a0c37acda111fee8cb76147abfa64c.zip |
rebase: fixed whitespaces
-rwxr-xr-x | bin/impressive-display | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/impressive-display b/bin/impressive-display index 26a64d3..e0b243d 100755 --- a/bin/impressive-display +++ b/bin/impressive-display @@ -143,21 +143,21 @@ if `echo ${!DISPLAYS[@]} | grep -q "$THIS_HOSTNAME"`; then $OUTPUT "INFO: $THIS_HOSTNAME has extra properties. loading it.." if echo ${DISPLAYS[$THIS_HOSTNAME]} | grep -q "pdf_uri="; then - PDF_URI=`echo ${DISPLAYS[$THIS_HOSTNAME]} | sed -r -e 's/.*pdf_uri=([^|]*).*/\1/'` + PDF_URI=`echo ${DISPLAYS[$THIS_HOSTNAME]} | sed -r -e 's/.*pdf_uri=([^|]*).*/\1/'` else - PDF_URI="$DEFAULT_PDF_URI" + PDF_URI="$DEFAULT_PDF_URI" fi if echo ${DISPLAYS[$THIS_HOSTNAME]} | grep -q "res="; then - RESOLUTION=`echo ${DISPLAYS[$THIS_HOSTNAME]} | sed -r -e 's/.*res=([^|]*).*/\1/'` + RESOLUTION=`echo ${DISPLAYS[$THIS_HOSTNAME]} | sed -r -e 's/.*res=([^|]*).*/\1/'` else - RESOLUTION="$DEFAULT_RESOLUTION" + RESOLUTION="$DEFAULT_RESOLUTION" fi if echo ${DISPLAYS[$THIS_HOSTNAME]} | grep -q "creds="; then - PDF_URL_CREDS=`echo ${DISPLAYS[$THIS_HOSTNAME]} | sed -r -e 's/.*creds=([^|]*).*/\1/'` + PDF_URL_CREDS=`echo ${DISPLAYS[$THIS_HOSTNAME]} | sed -r -e 's/.*creds=([^|]*).*/\1/'` else - PDF_URL_CREDS="$DEFAULT_PDF_URL_CREDS" + PDF_URL_CREDS="$DEFAULT_PDF_URL_CREDS" fi else PDF_URI="$DEFAULT_PDF_URI" |