
You are welcomeBill Cosby wrote: First of all, thank you.
I think you can, because you can specify a bold font, specifically. From conky homepage:Now another question, can I make part of the text bold?
And can I make tables, I mean for proper alignment
Thnkas again in advance
Code: Select all
font (font) Specify a different font. This new font will apply to the current line and everything following. You can use a $font with no arguments to change back to the default font (much like with $color)Code: Select all
own_window no
own_window_transparent yesWith own_window no, you are drawing to your desktop window. This is a problem for desktops with icons.Pentahex wrote:I've seen this problem mentioned a few times, here and elsewhere, but I haven't found an answer. When running Conky with:
All desktop icons disappear. Does anybody have Conky running transparent without this problem?Code: Select all
own_window no own_window_transparent yes
Code: Select all
own_window yes
own_window_transparent yesI think what is happening is that pseudo-transparency actually is working, but your root windowPentahex wrote:That makes sense, but when I use:
I just get a black background, and no transparency.Code: Select all
own_window yes own_window_transparent yes
Try not to confuse the notion of own_window yes with window decorations. I also use xfce4 (svn)Gentree wrote:That's handy, this is very close to a problem I am having.
I have used conky on xfce4 for over a year, maybe more and it has been excellent.
I have recently updated conky a couple of times [app-admin/conky-1.4.1] and xfce4 is now:
Xfce 4 Desktop Environment version 4.3.90.2 (Xfce 4.4 BETA2)
now conky shows my wm bg image momentarily but when it updated the output it replaces the image with plain grey bg. Equally if I flip to another desktop I get the image until the conky refresh then it goes grey.
The main thing I like about conky as compared to gtkrellm for ex. is that it writes on the desktop so I'm not really looking for a workaround by using own_window = yes.
Is this a known problem?
Thanks
Code: Select all
${color #00b5ef}XMMS2$color
${color #00b5ef}Title - ${color #00b5ef}${execi 10 xmms2 current}
Code: Select all
${color}Name CPU% MEM%
${color green} ${top name 1} ${top cpu 1} ${top mem 1}
${color green} ${top name 2} ${top cpu 2} ${top mem 2}
${color green} ${top name 3} ${top cpu 3} ${top mem 3}
${color green} ${top name 4} ${top cpu 4} ${top mem 4}
${color green} ${top name 5} ${top cpu 5} ${top mem 5}Code: Select all
Name CPU% MEM%
bittorent 47.12 23.55
Xorg 17.44 10.15
conky 0.33 0.49
xfce4-panel 0.33 2.47
xchat 1.67 2.44Code: Select all
bash-3.1# ls /sys/bus/platform/devices/
abituguru.224 i8042 pcspkr serial8250 vesafb.0Code: Select all
${color lightgrey}Temperatures: ${color red}cpu: ${exec sensors|grep "CPU Temp"|cut -c 28-31} ${color lightgrey} case: ${exec sensors|grep "S$
${color lightgrey}cpu ${execbar sensors|grep "CPU Temp"|cut -c 28-31}Code: Select all
${if_mounted /media/WDC Combo/}${color slate grey}WDC COMBO: ${color }${fs_free /media/WDC Combo/}/${fs_size /media/WDC Combo/}
${fs_bar 3,100 /media/WDC Combo/}${endif}conky reads the second, space-delimited or null-terminated string in the /etc/mtab file to confirm the mount.andrewd18 wrote:I've got an issue...
/media/WDC Combo/ is the accurate location of my external drive. However, conky doesn't see it. Setting /media/WDC\ Combo/ like I would for the cd command in bash doesn't work either. Thoughts?Code: Select all
${if_mounted /media/WDC Combo/}${color slate grey}WDC COMBO: ${color }${fs_free /media/WDC Combo/}/${fs_size /media/WDC Combo/} ${fs_bar 3,100 /media/WDC Combo/}${endif}
Code: Select all
${if_mounted /media/WDC}Thanks for the tip; I'll try that when I get home. HAL and Gnome-Volume-Manager give the drive its own name, so I'm not exactly in control of how the mount point is named (and I honestly don't know where to go to read up on it). I suppose a ln -s /media/WDC\ Combo/ /media/WDC_Combo would work, now that you mention it.drphibes wrote:conky reads the second, space-delimited or null-terminated string in the /etc/mtab file to confirm the mount.
that will be read as /media/WDC looking at the sscanf. the workaround is simply to create a mount point
with no embedded spaces, or you can probably also get away with using:
which will likely cause a match. Usable, as long as you don't have other mount points with the WDC prefix.Code: Select all
${if_mounted /media/WDC}
Merely symlinking the mountpoint won't help your cause. Remember it's the match of what /etc/mtab reports to the if_mounted parameter. You could symlink AND do a mount -bind to that linked dir. That will create a second entry in mtab and let you use it as your parameter to if_mounted.andrewd18 wrote:I suppose a ln -s /media/WDC\ Combo/ /media/WDC_Combo would work, now that you mention it.
