diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | impressive-display/bin/impressive-display | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 1bac097..805239b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ impressive-display (0.2.1) UNRELEASED; urgency=medium * Make cleanup trap more genuine: Really clean-up all created temporary files, make sure the impressive executable gets killed during clean-up. * Disable debugging option (set -x). + * Use $HOME/.impressive-display as temporary data directory. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Tue, 29 Mar 2016 20:14:17 +0200 diff --git a/impressive-display/bin/impressive-display b/impressive-display/bin/impressive-display index 8815d49..b962412 100755 --- a/impressive-display/bin/impressive-display +++ b/impressive-display/bin/impressive-display @@ -90,7 +90,7 @@ if [ -r $HOME/.impressive-display ]; then . $HOME/.impressive-display fi -workdir="$HOME/.impressive-display-data" +workdir="$HOME/.impressive-display" mkdir -p "$workdir" pdffile_previous="$workdir/impressive-pdffile-previous.pdf" pdffile_downloaded="$workdir/impressive-pdffile-downloaded.pdf" |