Say I want something like the following in my .conkyrc
NAME PID CPU% MEM%
${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
Do I have to align the columns manually by adding space, or is there a way to tell conky to align things in columns. With fewer columns, I could just use $alignc
and $alignr
but I can't do that here...
${goto x}
functionality? On my system, all text appearing after agoto
statement (regardless of the value used for the positional offsetx
) fails to display. – user001 Aug 23 '14 at 23:39TERM
. One route to debug this is to look at what control sequences Conky is emitting withstrace -ewrite -p$(pidof conky)
. Ask a question if you don't know how to make sense of this. – Gilles 'SO- stop being evil' Aug 24 '14 at 18:04conky -D
might come in handy as well perhaps (will put conky into debug mode, letting you peek way more deeply into its inner workings, and maybe giving you a clue what your build of conky is "allergic" against) – syntaxerror Aug 25 '14 at 16:22