To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=102518





------- Additional comments from [email protected] Fri Jun  5 08:56:01 +0000 
2009 -------
of: oh, ant btw:

- what about disabled pople who have 1024x768 but need big letters to see stuff?
- what about people with eyecandy/system monitoring stuff in their GNOME panel 
:)

But if you really want to force people to >= 1024x768, maybe you want to add a
script like this to /usr/bin/soffice? :P

if [ -x /usr/bin/xdpyinfo ]; then
        dim=`xdpyinfo | grep dimension | sed -e
"s/\s\sdimensions:\s\s\s\s\(.*x.*\)/\1/" | cut -d" " -f1`
        x=`echo $dim | cut -dx -f1`
        y=`echo $dim | cut -dx -f2`
        if [ "$x" lt "1024" ] || [ "$y" lt "768" ]; then
                if [ -x /usr/bin/Xdialog ]; then
                        dialog="Xdialog"
                elif [ -x /usr/bin/dialog -a -x /usr/bin/xterm]; then
                        dialog="/usr/bin/x-terminal-emulator /usr/bin/dialog"
                fi
                $dialog --title "Screen resolution too low" \
                        --msgbox "OpenOffice.org requires a resolution >= 1024x7
68 with at least 256 colors." 6 65
        fi
fi

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to