Need an Introduction to Tiny Core? Or peruse Core Concepts.
Quote from: nim108 on December 30, 2011, 05:00:12 PMQuote from: Onyarian on December 30, 2011, 11:28:59 AMUntil now I have utilized tc4.1+openbox+bmpanel, now updated with core4.2+Xorg+Xprogs+openbox+wbar+bmpanel I don't have the ondemand menu entry, and the System tools menu entry is empty. Is because openbox is not updated? or I have missing something?Quote* Updated interface files for supported window manager extensions: flwm_topside.tcz, flwm.tcz, fluxbox.tcz, hackedbox.tcz, icewm.tcz, icewm-full.tcz, jwm-snapshot.tcz, jwm.tczHaving similar issues with Openbox. No love for Openbox in the updates to all the window managers? Is another WM significantly better? I am used to and totally love the XML style config for Openbox menu entries.I don't see any interface files in the openbox extension. Use appbrowser Files tab on selected openbox.tcz.Therefore I would not expect such functionality and therefore not a Core 4.2 issue but an extension issue.
Quote from: Onyarian on December 30, 2011, 11:28:59 AMUntil now I have utilized tc4.1+openbox+bmpanel, now updated with core4.2+Xorg+Xprogs+openbox+wbar+bmpanel I don't have the ondemand menu entry, and the System tools menu entry is empty. Is because openbox is not updated? or I have missing something?Quote* Updated interface files for supported window manager extensions: flwm_topside.tcz, flwm.tcz, fluxbox.tcz, hackedbox.tcz, icewm.tcz, icewm-full.tcz, jwm-snapshot.tcz, jwm.tczHaving similar issues with Openbox. No love for Openbox in the updates to all the window managers? Is another WM significantly better? I am used to and totally love the XML style config for Openbox menu entries.
Until now I have utilized tc4.1+openbox+bmpanel, now updated with core4.2+Xorg+Xprogs+openbox+wbar+bmpanel I don't have the ondemand menu entry, and the System tools menu entry is empty. Is because openbox is not updated? or I have missing something?Quote* Updated interface files for supported window manager extensions: flwm_topside.tcz, flwm.tcz, fluxbox.tcz, hackedbox.tcz, icewm.tcz, icewm-full.tcz, jwm-snapshot.tcz, jwm.tcz
* Updated interface files for supported window manager extensions: flwm_topside.tcz, flwm.tcz, fluxbox.tcz, hackedbox.tcz, icewm.tcz, icewm-full.tcz, jwm-snapshot.tcz, jwm.tcz
#!/bin/sh# (c) Robert Shingledecker 2010. /etc/init.d/tc-functionsONDEMAND=/home/"$USER"/.config/openbox/ondemand.xmlTCEDIR=/etc/sysconfig/tcedir#TCEDIR="$(cat /opt/.tce_dir)" <---- OLD ONEprocess(){ TMP="/tmp/openbox.$$" && TMP2="/tmp/openbox2.$$" echo "<item label=\""${1}"\"> <action name=\"Execute\"> <command>"$TCEDIR/ondemand/${1}"</command> </action> </item>" > "$TMP" merge "$TMP" "$ONDEMAND" "END_ONDEMAND" > "$TMP2" mv "$TMP2" "$ONDEMAND" rm "$TMP"}if [ ! -s "$ONDEMAND" ]; then echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?> <openbox_menu xmlns=\"http://openbox.org/3.4/menu\">" > "$ONDEMAND" echo "<menu id=\"ondemand-menu\" label=\"OnDemand\">" >> "$ONDEMAND" echo "<!-- END_ONDEMAND -->" >> "$ONDEMAND" echo "</menu> </openbox_menu>" >> "$ONDEMAND" syncfi if [ -n "$1" ]; then process "$1"else rm /home/"$USER"/.config/openbox/ondemand.xml 2>/dev/null if [ -d "$TCEDIR"/ondemand ] && [ "$(ls -A ${TCEDIR}/ondemand)" ]; then > /home/"$USER"/.config/openbox/ondemand.xml for O in `ls "$TCEDIR"/ondemand|grep -v ".img$"`; do openbox_ondemand ${O}; done fi fi
for D in `ls /usr/share/applications/tinycore-*`; do
for D in `ls /usr/local/share/applications/tinycore-*`; do
Is possible to change openbox.tcz in the repository with one with this changes?(Perhaps are only necessary this two changes)
Quote from: Onyarian on December 31, 2011, 06:34:21 AMIs possible to change openbox.tcz in the repository with one with this changes?(Perhaps are only necessary this two changes)Will take a look in next days.
Quote from: bmarkus on December 31, 2011, 06:50:52 AMQuote from: Onyarian on December 31, 2011, 06:34:21 AMIs possible to change openbox.tcz in the repository with one with this changes?(Perhaps are only necessary this two changes)Will take a look in next days.Corrected version sent.
openbox_ondemand still is not correct as pointing to /opt/.tce-dir which should be /etc/sysconfig/tcedir.
So my testing would be limited.
Quote from: roberts on January 01, 2012, 07:34:03 PMSo my testing would be limited. I don't mind testing it for you, I use openbox stand-alone.