$(CP) $(PKG_INSTALL_DIR)/usr/share/fluxbox/styles/* $(1)/usr/share/fluxbox/styles/
$(CP) files/init $(1)/usr/share/fluxbox/
$(CP) files/menu $(1)/usr/share/fluxbox/
- echo "#!/bin/sh" > $(1)/usr/bin/WM
- echo "/usr/bin/fluxbox" >> $(1)/usr/bin/WM
- chmod +x $(1)/usr/bin/WM
+ $(INSTALL_DIR) $(1)/etc/uci-defaults
+ $(INSTALL_DATA) \
+ ./files/uci-defaults/x11 \
+ $(1)/etc/uci-defaults/
endef
define Package/fbsetbg/install
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/fbrun $(1)/usr/bin/
endef
+define Package/fluxbox/postinst
+ #!/bin/sh
+ [ -n "$${IPKG_INSTROOT}" ] && exit
+ . /etc/functions.sh
+ uci_apply_defaults
+endef
+
$(eval $(call BuildPackage,fbrun))
$(eval $(call BuildPackage,fluxbox))
--- /dev/null
+uci set x11.@desktop[0].autostart=enlightenment_start
\ No newline at end of file
$(CP) \
$(PKG_INSTALL_DIR)/usr/share/themes/* \
$(1)/usr/share/themes/
+ $(INSTALL_DIR) $(1)/etc/uci-defaults
+ $(INSTALL_DATA) \
+ ./files/uci-defaults/x11 \
+ $(1)/etc/uci-defaults/
+endef
+
+define Package/matchbox-window-manager/postinst
+ #!/bin/sh
+ [ -n "$${IPKG_INSTROOT}" ] && exit
+ . /etc/functions.sh
+ uci_apply_defaults
endef
$(eval $(call BuildPackage,matchbox-window-manager))
--- /dev/null
+uci set x11.@desktop[0].autostart=enlightenment_start
\ No newline at end of file
ARGS="$ARGS -$cfg $driver,,device=$device"
}
-start_with_x() {
+desktop() {
local cfg="$1"
- config_get start $cfg start
- [ -n "$start" ] && START="$START $start &"
+ config_get autostart $cfg autostart
+ [ -n "$autostart" ] && eval $autostart &
}
start() {
+ export DISPLAY=":0"
config_load x11
config_foreach screen screen
config_foreach graphic graphic
config_foreach input input
- #config_foreach start_with_x start
X $ARGS &
- #eval $START # not used yet, because the buildroot lacks of the functionality of editing uci-values while building a package
- sleep 1 && DISPLAY=":0" WM & # workaround
+ config_foreach desktop desktop
+ #test -d /etc/xdg/autostart || exit
+ #for elem in `ls /etc/xdg/autostart/`; do
+ # exec=`grep "^Exec=" "/etc/xdg/autostart/$elem"`
+ # eval ${exec#*=} &
+ #done
}
endef
define Package/xglamo/install
- $(INSTALL_DIR) $(1)/usr/bin $(1)/usr/lib $(1)/etc/init.d $(1)/etc/config
+ $(INSTALL_DIR) $(1)/usr/bin $(1)/usr/lib $(1)/etc/init.d $(1)/etc/config $(1)/etc/uci-defaults
$(CP) $(PKG_INSTALL_DIR)/usr/bin/Xglamo $(1)/usr/bin/
$(CP) ./files/x.init $(1)/etc/init.d/x11
$(if $(TS_POINTERCAL),$(CP) ./files/pointercal.$(TS_POINTERCAL) $(1)/etc/pointercal)
[ -n "$dpi" ] && ARGS="$ARGS -dpi $dpi"
}
+desktop() {
+ local cfg="$1"
+ config_get autostart $cfg autostart
+ [ -n "$autostart" ] && eval $autostart &
+}
+
start() {
+ export DISPLAY=":0"
config_load x11
config_foreach screen screen
TSLIB_TSDEVICE="/dev/event1" Xglamo $ARGS &
- DISPLAY=":0" WM & # workaround
+ config_foreach desktop desktop
+ #test -d /etc/xdg/autostart || exit
+ #for elem in `ls /etc/xdg/autostart/`; do
+ # exec=`grep "^Exec=" "/etc/xdg/autostart/$elem"`
+ # eval ${exec#*=} &
+ #done
}