seems gtkdialog4 does not like the <combobox> very much .
tried
<combobox tooltip-text=\"${TT_tz1}\">
and
<combobox>
still scrolling is very very slow .. and since the MainBoard is screwed only twice the vibrations of the CPU are sounding remarkably ...
What i think i could add from /tmp/xerrs.log :
JWM: warning: /root/.jwm/jwmrc-theme[10]: invalid tag in Active: Corner
JWM: warning: /root/.jwm/jwmrc-theme[16]: invalid tag in Inactive: Corner
Hadn't they been commented like
Code: Select all
--- /initrd/pup_ro2/root/.jwm/jwmrc-theme 2011-11-10 16:58:57.000000000 +0800
+++ /root/.jwm/jwmrc-theme 2011-11-11 02:41:14.836533429 +0800
@@ -7,13 +7,13 @@
<Active>
<Text>white</Text>
<Title>#393F96:#30528D</Title>
- <Corner>#4A5966</Corner>
+ <!-- <Corner>#4A5966</Corner> -->
<Outline>black</Outline>
</Active>
<Inactive>
<Text>white</Text>
<Title>#84CFF1:#393F96</Title>
- <Corner>#DCDAD5</Corner>
+ <!-- <Corner>#DCDAD5</Corner> -->
<Outline>gray30</Outline>
</Inactive>
</WindowStyle>
BUT i finally found that this had been already ^ worked around ^ :
# grep 'jwm \-p' /usr/local/jwmconfig2/*
/usr/local/jwmconfig2/taskbarConfig:jwm -p 2>&1 | grep -v 'warning' > $TMP
/usr/local/jwmconfig2/taskbarHeight:jwm -p 2>&1 | grep -v 'warning' > $TMP
/usr/local/jwmconfig2/taskbarPlace:jwm -p 2>&1 | grep -v 'warning' > $TMP
/usr/local/jwmconfig2/trayInsert:jwm -p 2>&1 | grep -v 'warning' > $TMP
/usr/local/jwmconfig2/virtualDesk:jwm -p 2>&1 | grep -v 'warning' > $TMP
AND
Input string is '3'
ls: cannot access /tmp/jwmrc-tray-tmp-3.txt: No such file or directory
lets try a sed fix ...
# for i in /usr/local/jwmconfig2/* ; do echo $i; grep '`ls ' $i; echo; done
ONLY panel-buttons with 3 hits ..
Code: Select all
# sed -i 's/`ls \(.*\)`/`ls \1 2>\/dev\/null`/g' /usr/local/jwmconfig2/panel-buttons
worked for me today .. sed-gymnastics for my little brain ...

had thought i would have to escape the backticks fist , but that did not worked for me ...
BUT OF COURSE a " test -f FILENAME " would be much more elegant i think
[edit some hours later : needs additionally
Code: Select all
# sed -i 's/"`ls \(.*\)`" = "" ]/\! -f \1 ]/g' /usr/local/jwmconfig2/panel-buttons
to the code line below : \edit]
Code: Select all
# sed -i 's/"`ls \(.*\)`" \(.*\) ]/-f \1 ]/g' /usr/local/jwmconfig2/panel-buttons
lets see how much attempts i did on this :
# grep sed $HOME/.history | wc -l
10
WOAOOO: Master of the SEDIVERSE

[edit some hours later : grep sed $HOME/.history | wc -l == 17 /edit]
SINCE THAT IS ALL COSMETICS i somehow did not mention these before .
Now i want to ^ *** off early ^ for the early morning here , hopefully the shutdown fix for encrypted save-files would work ... [edit : works OK /edit]