What packages do I need to install to run the the XFCE beta 2?
Also, can I use the old plugins with the beta 2 version of XFCE? I mostly want the taskbar plugin.
If this has already been asked, sorry to ask again, but 18 pages is a lot!
Thanks.
[div align=\"right\"][{POST_SNAPBACK}][/a][/div]
The panel plugins from 4.2 and before do not work the the newest (4.3 / 4.4beta) panel.
I installed the (as chero points out) "experimental" version this way:
download:
Terminal_0.2.5.r20943_armv5tel.ipk
libexo_0.3.1.6.beta1_armv5tel.ipk
popt_1.6.4_armv5tel.ipk
startxfce4
thunar_0.3.0.beta1_armv5tel.ipk
xinitrc.xfce
from [a href=\"http://users.telenet.be/zaurususer/ipkgs/experimental/]HERE[/url]
use:
# ipkg -force-depends -d root install
download everything from
HEREinstall everything excluding the plugins you don't want.
I used a for loop to do the work:
# for i in `ls -1 *.ipk`; do ipkg -force-depends -d root install $i; done
Copy the xinitrc.xfce to your ~. Because I am running R121 (I think this is the reason) , I had to hack the xinit.xfce a little. Here is a section of mine:
MODEL=`cat /proc/deviceinfo/product`
MODEL=SL-3100
echo 'MODEL:'$MODEL
case "$MODEL" in
SL-C860|SL-C760|SL-C750|SL-7500|SL-C700)
test -f /etc/X11/kb/corgi.xmodmap && xmodmap /etc/X11/kb/corgi.xmodmap
;;
SL-6000)
test -f /etc/X11/kb/tosa.xmodmap && xmodmap /etc/X11/kb/tosa.xmodmap
;;
SL-C1000|SL-C3000|SL-C3100)
test -f /etc/X11/kb/Akita/xmodmap && xmodmap /etc/X11/kb/Akita/xmodmap
;;
*)
cat /proc/cpuinfo | grep 'Sharp-Collie' 2>/dev/null >/dev/null && test -f /etc/X11/kb/collie.xmodmap && xmodmap /etc/X11/kb/collie.xmodmap
;;
esac
notice the "MODEL=SL-3100" and related xmodmap lines
I think I even had to make a link from libxfce4util.so.4.0.0 to libxfce4util.so.2
# ln -s /usr/lib/libxfce4util.so.4.0.0 /usr/lib/libxfce4util.so.2
to get some of the plugins and xfce-related apps to work. You can tell if there are libxfce4util errors on the screen after you quit X
If I think of anything else, I'll edit this post.
Good luck,
--webslngr