summaryrefslogtreecommitdiff
path: root/debian/ooffice
diff options
context:
space:
mode:
Diffstat (limited to 'debian/ooffice')
-rwxr-xr-xdebian/ooffice16
1 files changed, 16 insertions, 0 deletions
diff --git a/debian/ooffice b/debian/ooffice
new file mode 100755
index 0000000..e6f6d2f
--- /dev/null
+++ b/debian/ooffice
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+msg="OpenOffice.org has been renamed to LibreOffice. You can launch it from
+the Applications menu, in the Office category. Or you can launch it by
+typing 'soffice' in the Terminal window."
+
+if [ -n "$DISPLAY" ]; then
+ zenity --info --title="OpenOffice.org Renamed" --no-wrap --text="$msg"
+else
+ cat <<EOF
+OpenOffice.org has been renamed to LibreOffice. You can launch it from
+the Applications menu, in the Office category. Or you can launch it by
+typing 'soffice' in the Terminal window.
+EOF
+fi
+exit 0