Hi all,

My systray didn't work in Ubuntu 12.10. I had tried every different 
configuration for systray but 
it just didn't show and no any error message on my system. I guess that I 
had upgrade some of 
the qtile depdent library that cause the problem.  
So, i decided to upgrade all the library used by qtile and hope can fix the 
problem. 
After building several library and reboot, the qtile's systray shows two 
lovely icons: DROPBOX
status and SKYPE notification. 

Below is a rough summary of steps to rebuild whole library, and BTW the ARM 
platfrom can also 
use these steps to build ARM version libraries. 

thanks,
Houcheng Lin


# install qtile to prevent missing
sudo apt-add-repository ppa:tycho-s/ppa
sudo apt-get update
sudo apt-get install qtile


mkdir qtile
cd qtile


# arm version qtile install ####
apt-get install autoconf libtool git
apt-get install python-dev libpng-dev python-gtk2

wget http://xcb.freedesktop.org/dist/xcb-proto-1.11.tar.gz
tar xzvf xcb-proto-1.10.tar.gz
cd xcb-proto-1.10.tar.gz
./autogen.sh && ./configure && make install
cd ..


wget http://xcb.freedesktop.org/dist/xpyb-1.3.1.tar.gz
tar xzvf xpyb-1.3.1.tar.gz
cd xpyb-1.3.1
libtoolize --force
aclocal
autoheader
automake --force-missing --add-missing
autoconf
./configure
make install
cd ..


git clone [email protected]:tych0/xpyb-ng.git
cd xpyb-ng
python setup.py install
cd ..


# libxcb
wget http://xcb.freedesktop.org/dist/libxcb-1.11.tar.gz
tar xzvf libxcb-1.11.tar.gz
cd libxcb-1.11
./configure
make install
cd ..

# pixman
git clone git://anongit.freedesktop.org/git/pixman.git
cd pixman
./autogen.sh  && make install -j3
cd ..

#cairo
wget http://cairographics.org/releases/cairo-1.10.0.tar.gz
tar xvzf cairo-1.10.0.tar.gz
cd cairo-1.10.0
./autogen.sh --enable-xcb
make
sudo make install
cd ..


git clone git://git.cairographics.org/git/py2cairo
cd py2cairo
./autogen.sh --enable-xcb && make install
cd ..

apt-get install python-gtk2

git clone git://github.com/qtile/qtile.git
cd qtile
sudo python setup.py install


-- 
You received this message because you are subscribed to the Google Groups 
"qtile-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to