summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/hooks/kde-no-pdf-drm.sh27
-rwxr-xr-xexamples/hooks/kpdf-nodrm.sh12
2 files changed, 27 insertions, 12 deletions
diff --git a/examples/hooks/kde-no-pdf-drm.sh b/examples/hooks/kde-no-pdf-drm.sh
new file mode 100755
index 0000000..2eb3739
--- /dev/null
+++ b/examples/hooks/kde-no-pdf-drm.sh
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+# This is a hook for live-helper(7) to configure KDEs PDF viewer to ignore
+# manipulation restrcition on "DRM protect" PDF documents.
+#
+# To enable it, copy or symlink this hook into your config/chroot_local-hooks
+# directory.
+
+if [ -d /usr/share/kde4/config ]
+then
+ # KDE4 (squeeze/sid)
+
+cat > /usr/share/kde4/config/okularpartrc << EOF
+[General]
+ObeyDRM=false
+EOF
+
+elif [ -d /usr/share/config ]
+then
+ # KDE3 (etch/lenny)
+
+cat > /usr/share/config/kpdfpartrc << EOF
+[General]
+ObeyDRM=false
+EOF
+
+fi
diff --git a/examples/hooks/kpdf-nodrm.sh b/examples/hooks/kpdf-nodrm.sh
deleted file mode 100755
index 02939b0..0000000
--- a/examples/hooks/kpdf-nodrm.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-helper(7) to configure kpdf to ignore manipulation
-# restrcition on "DRM protect" PDF documents.
-#
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-
-cat > /etc/kde3/kpdfpartrc << EOF
-[General]
-ObeyDRM=false
-EOF