blob: e6f6d2f915b52f5018a6bc6fc114fdd3e0641f72 (
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 '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
|