I compiled Conky with the flags
Code:
--prefix=/usr \
--libdir=/usr/lib${LBIDIRSUFFIX} \
--sysconfdir=/etc \
--mandir=/usr/man \
--enable-shared=yes \
--enable-static=no \
--enable-ibm \
--enable-hddtemp \
--disable-xft \
--enable-weather-metar \
--enable-weather-xoap \
--enable-portmon \
--enable-mpd=yes \
--enable-rss=yes \
--enable-wlan=yes \
--disable-x11 \
--disable-xdamage \
--disable-own-window \
--build=$ARCH-slackware-linux \
--host=$ARCH-slackware-linux
That way I simply can use it to produce text output that I can use for wmii's panel. I set up my conkyrc this way:
Code:
out_to_console yes
total_run_times 1
TEXT
mem ${memperc}% swap ${swapperc}% / ${fs_used_perc /}% /home ${fs_used_perc /home}% | ${freq_g cpu1} ${freq_g cpu2} | ${cpu}% | ${battery_short} | ${time %a %d %b %T}
Conky is periodically called from wmii and the output is displayed to the panel just fine. There is only one problem with it. The output from ${cpu} is stuck at the value it got when Conky is started for the first time. So currently it is displaying 6% all the time, even when I start heavy compile jobs.
Anyone had that issue and knows a solution or a link to a solution?
Thanks in advance.