into stealth.(none):/home/pb/oe/oe-packages
2004/08/29 13:22:45+01:00 (none)!pb
set Gtk/ToolbarStyle for non-bigscreen devices
check that chkhinge exists before calling it
BKrev: 4131caa9RPYkrxXt2E0q5vNLimChkg
+#!/bin/sh
+
+if [ -z "`which chkhinge`" ]; then
+ # probably not a zaurus
+ exit 0
+fi
+
+chkhinge -e
+if [ $? = 10 ]; then
+ xrandr -o right
+fi
+
-PR = "r2"
+PR = "r4"
inherit gpe
do_install_append() {
install ${WORKDIR}/zaurus.sh ${D}/etc/X11/Xinit.d/11zaurus
+ install -d ${D}/etc/gpe/xsettings-default.d
+ if [ "${GPE_MACHINE_CLASS}" != "bigscreen" ]; then
+ echo "Gtk/ToolbarStyle:S:icons" > ${D}/etc/gpe/xsettings-default.d/toolbar
+ fi
}