Page 1 of 1

[SOLVED] monodevelop 4 with oxygen and oxygen-gtk

PostPosted: Aug 14th, '13, 11:52
by hman
Hi all,
i using monodevelop 4 rebuilded from cauldron packages to mageia 3 but there is a bug to use it with oxygen theme: https://bugs.kde.org/show_bug.cgi?id=316995 but there is a workaround that work fine :D

you need start monodevelop as follow
Code: Select all
$ OXYGEN_DISABLE_INNER_SHADOWS_HACK=1 monodevelop


i choose to add prefix into /usr/bin/monodevelop script directlly (from line 23):
Code: Select all
if [ -n "$_MD_REDIRECT_LOG" ]; then
        mkdir -p `dirname "$_MD_REDIRECT_LOG"`
        OXYGEN_DISABLE_INNER_SHADOWS_HACK=1 $MONO_EXEC $_MONO_OPTIONS "$EXE_PAT$
else
        OXYGEN_DISABLE_INNER_SHADOWS_HACK=1 $MONO_EXEC $_MONO_OPTIONS "$EXE_PAT$
fi


Bye