summaryrefslogtreecommitdiff
path: root/debian/ooffice
blob: dc1be3901a1cf9a2be5d8b6a0a973ce835967d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 'libreoffice' 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 'libreoffice' in the Terminal window.
EOF
fi
exit 0