summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2018-05-02 22:46:01 +0200
committerMichael Raskin <7c6f434c@mail.ru>2018-05-02 22:52:51 +0200
commit1f52bfb67cfb0c2ceec862e1aab9f5667c9100ee (patch)
tree6884ea7868fb797484dda16c500b1741996e0ff2 /pkgs/applications/office
parent8322b43e8e7b36a0dcde6a76b33581185457baf0 (diff)
downloadnixlib-1f52bfb67cfb0c2ceec862e1aab9f5667c9100ee.tar
nixlib-1f52bfb67cfb0c2ceec862e1aab9f5667c9100ee.tar.gz
nixlib-1f52bfb67cfb0c2ceec862e1aab9f5667c9100ee.tar.bz2
nixlib-1f52bfb67cfb0c2ceec862e1aab9f5667c9100ee.tar.lz
nixlib-1f52bfb67cfb0c2ceec862e1aab9f5667c9100ee.tar.xz
nixlib-1f52bfb67cfb0c2ceec862e1aab9f5667c9100ee.tar.zst
nixlib-1f52bfb67cfb0c2ceec862e1aab9f5667c9100ee.zip
libreoffice: wrapper: do not set SAL_USE_VCLPLUGIN for now
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/libreoffice/wrapper.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/office/libreoffice/wrapper.sh b/pkgs/applications/office/libreoffice/wrapper.sh
index 52cd91e8030e..cff8f200e2bc 100644
--- a/pkgs/applications/office/libreoffice/wrapper.sh
+++ b/pkgs/applications/office/libreoffice/wrapper.sh
@@ -1,13 +1,13 @@
 #!@bash@/bin/bash
 export JAVA_HOME="${JAVA_HOME:-@jdk@}"
-export SAL_USE_VCLPLUGIN="${SAL_USE_VCLPLUGIN:-gen}"
+#export SAL_USE_VCLPLUGIN="${SAL_USE_VCLPLUGIN:-gen}"
 
 if uname | grep Linux > /dev/null && 
        ! ( test -n "$DBUS_SESSION_BUS_ADDRESS" ); then
     dbus_tmp_dir="/run/user/$(id -u)/libreoffice-dbus"
     mkdir "$dbus_tmp_dir"
     dbus_socket_dir="$(mktemp -d -p "$dbus_tmp_dir")"
-    "@dbus@"/bin/dbus-daemon --nopidfile --nofork --config-file "@dbus@"/share/dbus-1/session.conf --address "unix:path=$dbus_socket_dir/session"  >&2 &
+    "@dbus@"/bin/dbus-daemon --nopidfile --nofork --config-file "@dbus@"/share/dbus-1/session.conf --address "unix:path=$dbus_socket_dir/session"  &> /dev/null &
     export DBUS_SESSION_BUS_ADDRESS="unix:path=$dbus_socket_dir/session"
 fi