Make OpenOffice open using default theme!

COMMAND:

sudo vi /usr/bin/openoffice4

IS:

#!/bin/sh
export SAL_USE_VCLPLUGIN=gen
exec /opt/openoffice4/program/soffice "$@"


SOLL:

#!/bin/sh
export SAL_USE_VCLPLUGIN=gen
exec /opt/openoffice4/program/soffice "$@"

REFERENCE:
https://www.youtube.com/watch?v=HYFFVHBiPYM

Comments

Popular posts from this blog

英语口语

Ruby语言经典代码讲座:单态类(Singleton Class)