Hey all
So, I am completely new to linux in general. I am slowly learning, but still every step confuses me to no end. Right now i am trying to download/install the ‘Daisy plasma’ for my taskbar. Searched all the faqs I could but still having trouble with the basics (Found I learn better by just doing it rather than reading guides that aren’t specific to what I am doing) so, I downloaded everything for the plasma, but when I try t install I get:
if ! -d build ]
then
mkdir build
fi
cd build
cmake …/ -DCMAKE_INSTALL_PREFIX=kde4-config --prefix
make
if $? != 0 ]
then
echo
echo “An error occured during compilation!”
echo “Check if you have installed all needed header files.”
exit
fi
if ! whoami
= “root” ]
then
echo
echo “Installation requires root privileges - Ctrl+C to cancel.”
sudo make install
if $? != 0 ]
then
exit
fi
else
make install
fi
if whoami
= “root” ]
then
exit
fi
kbuildsycoca4
I’ve tried to find the headers, but again I am so new that even this seems to be a task for me! I am running OpenSuse 11.4 with Kde 4.6.0 If anyone is able to give me kind of a step by step deal on this i would be beyond grateful!