[SOLVED] temperatures in conky

I'm having trouble getting conky to display my CPU temps. sensors says this:
# sensors
it8718-isa-0290
Adapter: ISA adapter
in0: +1.38 V (min = +0.00 V, max = +4.08 V)
in1: +2.13 V (min = +0.00 V, max = +4.08 V)
in2: +3.26 V (min = +0.00 V, max = +4.08 V)
in3: +2.98 V (min = +0.00 V, max = +4.08 V)
in4: +0.70 V (min = +0.00 V, max = +2.10 V)
in5: +0.00 V (min = +0.00 V, max = +4.08 V) ALARM
in6: +1.49 V (min = +0.00 V, max = +4.08 V)
in7: +3.07 V (min = +0.00 V, max = +4.08 V)
in8: +3.23 V
fan1: 1216 RPM (min = 10 RPM)
fan2: 1205 RPM (min = 10 RPM)
temp1: -55.0°C (low = +127.0°C, high = +127.0°C) sensor = thermistor
temp2: -2.0°C (low = +127.0°C, high = +127.0°C) sensor = thermistor
temp3: +31.0°C (low = +127.0°C, high = +80.0°C) sensor = thermal diode
cpu0_vid: +0.000 V
coretemp-isa-0000
Adapter: ISA adapter
Core 0: +45.0°C (high = +82.0°C, crit = +100.0°C)
coretemp-isa-0001
Adapter: ISA adapter
Core 1: +36.0°C (high = +82.0°C, crit = +100.0°C)
coretemp-isa-0002
Adapter: ISA adapter
Core 2: +37.0°C (high = +82.0°C, crit = +100.0°C)
coretemp-isa-0003
Adapter: ISA adapter
Core 3: +37.0°C (high = +82.0°C, crit = +100.0°C)
The examples I've seen on the forum (like this excellent post #4 from [vEX])  all show the it87 modules reporting temp1, temp2, temp3, etc. as "Sys temp" or "CPU temp," which then makes it pretty clear. But here I'm guessing 31C is the system/motherboard temp, and that shows up fine with hwmon 0 temp 3 as expected.
But I can't find what is reporting these coretemp-isa values, or how I would get them into conky. I searched through the conky variables page but didn't see anything related to isa or cpu temps  reported this way (coretemp-isa, etc.) The xfce sensors plugin lists them as "coretemp-0" "coretemp-1" etc.  On a whim I tried adding those in with the platform variable (eg: platform it8718 coretemp-isa-0000 (or just coretemp-0, etc.)}), and all kinds of other combinations, but needless to say it didn't work. The it87 directories don't seem to show those values either:
ls /sys/module/it87/drivers/platform:it87/it87.656
alarms in0_alarm in2_min in5_max modalias pwm3_freq temp2_type
bus@ in0_input in3_alarm in5_min name subsystem@ temp3_alarm
cpu0_vid in0_max in3_input in6_alarm power/ temp1_alarm temp3_input
driver@ in0_min in3_max in6_input pwm1 temp1_input temp3_max
fan1_alarm in1_alarm in3_min in6_max pwm1_enable temp1_max temp3_min
fan1_input in1_input in4_alarm in6_min pwm1_freq temp1_min temp3_type
fan1_min in1_max in4_input in7_alarm pwm2 temp1_type uevent
fan2_alarm in1_min in4_max in7_input pwm2_enable temp2_alarm vrm
fan2_input in2_alarm in4_min in7_max pwm2_freq temp2_input
fan2_min in2_input in5_alarm in7_min pwm3 temp2_max
hwmon:hwmon0@ in2_max in5_input in8_input pwm3_enable temp2_min
Can anyone point me in the right direction?
Last edited by userlander (2009-01-28 14:02:34)

Hi Folks,
I have the coretemp and it87 type chips and was using the method of lunch_box and sparky to get the temps in conky.   After reading fphillips's  post  I started hunting around in /sys/ and playing with .conkrc.  On my box:
${hwmon 0 temp 1} refers to /sys/class/hwmon/hwmon0/device/temp1_input 
and
${hwmon 4 fan 1} refers to /sys/class/hwmon/hwmon4/device/fan4_input
So I now use $hwmon in .conkyrc which should preform a little better than execi and sensors.
sensors
coretemp-isa-0000
Adapter: ISA adapter
Core 0: +59.0°C (high = +80.0°C, crit = +100.0°C)
coretemp-isa-0001
Adapter: ISA adapter
Core 3: +57.0°C (high = +80.0°C, crit = +100.0°C)
coretemp-isa-0002
Adapter: ISA adapter
Core 1: +52.0°C (high = +80.0°C, crit = +100.0°C)
coretemp-isa-0003
Adapter: ISA adapter
Core 2: +53.0°C (high = +80.0°C, crit = +100.0°C)
[SNIP]
fan1: 1161 RPM (min = 10 RPM)
fan4: 2657 RPM (min = 0 RPM)
[SNIP]
.conkyrc
[SNIP]
color1 F9F966
color2 FF7F50
color3 87CEFF
color4 7FFF00
color5 87CEFA
default_color Chartreuse
default_outline_color Dark Cyan
default_shade_color Dark Cyan
[SNIP]
${color1}CPU0:$color ${cpu cpu0}% ${cpubar cpu0 5,85}${alignr 10}${color2}${hwmon 0 temp 1}$alignr${color1}${cpugraph cpu0 32,120 104E8B FF7F50 -t}
${color1}CPU1:$color ${cpu cpu1}% ${cpubar cpu1 5,85}${alignr 10}${color2}${hwmon 2 temp 1}$alignr${color1}${cpugraph cpu1 32,120 104E8B FF7F50 -t}
${color1}CPU2:$color ${cpu cpu2}% ${cpubar cpu2 5,85}${alignr 10}${color2}${hwmon 3 temp 1}$alignr${color1}${cpugraph cpu2 32,120 104E8B FF7F50 -t}
${color1}CPU3:$color ${cpu cpu3}% ${cpubar cpu3 5,85}${alignr 10}${color2}${hwmon 1 temp 1}$alignr${color1}${cpugraph cpu3 32,120 104E8B FF7F50 -t}
${color1}Fan 1: ${color2}${hwmon 4 fan 1} RPM ${color1}Fan 4: ${color2}${hwmon 4 fan 4} RPM
[SNIP]

Similar Messages

  • Show CPU temperature in conky [solved]

    Hello,
    I'm trying to get the temperature of my CPU in conky.
    I tried with "${acpitemp}" but it shows me "0".
    I installed lm-sensors and hddtemp
    $ sensors
    coretemp-isa-0000
    Adapter: ISA adapter
    Core 0: +69.0°C (high = +100.0°C, crit = +100.0°C)
    coretemp-isa-0001
    Adapter: ISA adapter
    Core 1: +69.0°C (high = +100.0°C, crit = +100.0°C)
    $ sudo hddtemp /dev/sda
    /dev/sda: WDC WD2500BEVS-60UST0: 48°C
    $ ls -l /sys/bus/platform/devices/
    total 0
    lrwxrwxrwx 1 root root 0 28 fév 19:43 coretemp.0 -> ../../../devices/platform/coretemp.0
    lrwxrwxrwx 1 root root 0 28 fév 19:43 coretemp.1 -> ../../../devices/platform/coretemp.1
    lrwxrwxrwx 1 root root 0 28 fév 19:43 i8042 -> ../../../devices/platform/i8042
    lrwxrwxrwx 1 root root 0 28 fév 09:10 iTCO_wdt -> ../../../devices/platform/iTCO_wdt
    lrwxrwxrwx 1 root root 0 28 fév 19:43 pcspkr -> ../../../devices/platform/pcspkr
    lrwxrwxrwx 1 root root 0 28 fév 09:10 regulatory.0 -> ../../../devices/platform/regulatory.0
    lrwxrwxrwx 1 root root 0 28 fév 19:43 serial8250 -> ../../../devices/platform/serial8250
    lrwxrwxrwx 1 root root 0 28 fév 09:10 vboxdrv.0 -> ../../../devices/platform/vboxdrv.0
    lrwxrwxrwx 1 root root 0 28 fév 19:43 vesafb.0 -> ../../../devices/platform/vesafb.0
    any idea ?
    thank you
    Last edited by martvefun (2010-03-03 11:16:40)

    http://wiki.archlinux.org/index.php/Con … s_.conkyrc

  • [Solved] Need some conky help

    Hi,
    I'm battling with two conky issues related to audacious & hddtemp.
    EDIT: Feel a bit daft now, ${if_running audacious}${exec audtool current-song-tuple-data title} - ${exec audtool current-song-tuple-data artist} sorted the audacious issue out.
    I cannot get HDD temperature to be displayed, it's just blank. I have hddtemp daemon running and I can get the details from the hdd with hddtemp and nc.
    Temperature: ${alignr}${execi sudo hddtemp /dev/sda 127.0.0.1 7634 | cut -c20-21}°C
    I've also tried using execi nc 127.0.0.1 7634 | cut -c20-21 but both just come up blank.
    I'm probably missing something obvious, any ideas?
    Last edited by mips1 (2011-07-18 22:31:00)

    To answer the original question, just for future reference...
    "execi" requires an interval before the command.  So instead of
    Temperature: ${alignr}${execi sudo hddtemp /dev/sda 127.0.0.1 7634 | cut -c20-21}°C
    you should use something like
    Temperature: ${alignr}${execi 30 sudo hddtemp /dev/sda 127.0.0.1 7634 | cut -c20-21}°C
    That would refresh the info every 30 seconds.

  • [Solved] xfce4+compiz: conky can only been seen if I miminzed windows?

    I have xfce4 and compiz-xfce4 installed with my Arch Linux?
    I added conky in my auto start-up setting. It turns out conky can only be seen if I minimize all windows.
    When I clicked the "show desktop" button in my xfce4-pannel, conky just cannot show up.
    Thanks,
    (pls kindly see my another question about xfce4+compiz as well: https://bbs.archlinux.org/viewtopic.php?id=177106)
    Last edited by hellolj (2014-02-13 23:12:16)

    Solved
    It turns out I have to uncheck the "Hide Skip Taskbar Windows" option under  "General Options"  in Compiz configuration settings manager.

  • [solved]tolua++ and conky 1.7.2

    I've been messing with this for a while now, but I have no idea what's wrong.
    I'm trying to compile (via ABS) the conky 1.7.2 package with support for the new lua bindings (--enable-lua-cairo/--enable-lua-imlib2). I've installed the toluapp package from AUR, which the configure script seems to accept - but it always hits a snag at this point:
    checking for tolua++... tolua++
    checking for a library containing tolua_error... no
    configure: error: tolua_error not found
    Any ideas? I'm desperate to try the new features.
    Last edited by Crows (2009-09-29 15:05:22)

    p0rkjello wrote:
    Crows wrote:Sorry, forgot to mark this as solved seeing as it was quite far off the front page. In the end I got it working by adding LUA51_LIBS='-llua -lm' to the section of the PKGBUILD that includes --enable etc.
    I can't seem to get it to work.. Could you clarify..
    build() {
    cd ${srcdir}/${pkgname}-${pkgver}
    ./configure LUA51_LIBS='-llua -lm' \
    --prefix=/usr \
    --sysconfdir=/etc \
    --enable-rss \
    --enable-ibm \
    --enable-imlib2 \
    --enable-lua \
    --enable-lua-cairo
    make || return 1
    Error:
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.1/../../../../lib/libtolua++.a: could not read symbols: Bad value
    collect2: ld returned 1 exit status
    make[1]: *** [libcairo.la] Error 1
    nevermind.. it looks like an x84_64 thing.. I need to recomple tolua++ w/ -fPIC

  • [solved] Cannot compile conky-cli (compiler cannot create executables)

    I'm having what seems to be a pretty common problem, but I cannot solve it. I've searched google and the forums, and I'm sure the answer is very easy, but I'm just stuck.
    ==> Starting build()...
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for gcc... gcc
    checking for C compiler default output file name...
    configure: error: in `/tmp/yaourt-tmp-heleos/aur-conky-cli/conky-cli/src/conky-1.7.1.1':
    configure: error: C compiler cannot create executables
    See `config.log' for more details.
    make: *** No targets specified and no makefile found. Stop.
    ==> ERROR: Build Failed.
    Aborting...
    Error: Makepkg was unable to build conky-cli package.
    If someone could point me in the right direction that would be great
    Solved my own problem! Looks like it was a change I made to my makepkg.conf.... Does anyone have a CFLAGS that's safe for an i7?
    Last edited by heleos (2009-08-25 01:07:24)

    Do you (or someone else) have a pkgbuild that you would like to share? I'm in need of the ecj compiler, but didn't find a pkgbuild in aur (unlessed I missed it somehow)
    Kind regards,
    Simon

  • [SOLVED] cannot run Conky on KDE4

    I cannot start Conky on KDE4.
    Arch Linux Conky Manual says FEH must be installed and ~/.kde/share/autostart/fehconky must be created as follows:
    #!/bin/bash
    feh --bg-scale `dcop kdesktop KBackgroundIface currentWallpaper 1`
    I have installed FEH. Then I have created the links into .kde4 directory, because KDE4 supports this one. However Arch Linux installation with KDE4 does not include dcop but dbus. And there is no web link / information I could find, which states that how dbus must be started accordingly.
    I have also created a symlink (as stated in the page above):
    ln -s /usr/bin/conky ~/.kde4/share/autostart/conkylink
    , however when I reboot or relogin, KDE does not seem to start these programs. As a root I have not found any log file in /var/log containing why these programs cannot be started.
    For experiment, I have copied both files into ~/.kde4/Autostart, but in this case KDE4 cannot find dcop and Desktop Environment aborts to login prompt again.
    How can I start feh? Do I need it in KDE4? DBUS daemons seem to be running
    [arutku@hostarchlinux ~]$ ps -ef | grep dbus
    dbus 2999 1 0 Sep05 ? 00:00:01 /usr/bin/dbus-daemon --system
    root 3715 1 0 Sep05 ? 00:00:00 /usr/bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session
    root 3716 1 0 Sep05 ? 00:00:00 dbus-launch --autolaunch 559d1c801aa546c24bf5f91048c00573 --binary-syntax --close-stderr
    arutku 3764 1 0 Sep05 ? 00:00:00 /usr/bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session
    arutku 3765 1 0 Sep05 ? 00:00:00 dbus-launch --sh-syntax --exit-with-session
    arutku 4104 3870 0 00:29 pts/1 00:00:00 grep dbus
    [arutku@hostarchlinux ~]$
    Do I really need to start FEH then?
    Any help appreciated because there is no information in web I could find.
    dbus is not in DAEMONS list in /etc/rc.conf. And, maybe it helps:
    [arutku@hostarchlinux ~]$ uname -a
    Linux hostarchlinux 2.6.26-ARCH #1 SMP PREEMPT Tue Aug 26 21:15:43 UTC 2008 i686 AMD Athlon(tm) XP 2800+ AuthenticAMD GNU/Linux
    EDIT: Fixed typos
    Last edited by pencuse (2008-09-06 00:07:07)

    I have solved the problem by running
    update-desktop-database
    both for the user and the root. I don't know for which user solved this utility the problem but it solved. I think it corrected MIME settings of the operating system. Before I had run this utility, icons for the files could not be shown, files could not be associated and KDE complained inode/* MIME types in /usr/share/packages/kde.xml.
    However this utility solved the problems. Without any FEH installation/scripting stated in Conky Wiki of Arch Linux, Conky runs automatically now.
    ~/.kde4/Autostart for KDE4 is the correct directory now to autostart Conky or any other application.
    HTH.

  • [SOLVED]Systemd autostart conky

    Hi guys, as a new Arch user I tried to play a bit with systemd to have it automatically start Conky after logon. When I try to start conky manually from the terminal it all works perfectly but when systemd needs to do it as a unit (service) it's not possible as Conky doesn't accept the rc file it's been given. It seems that the variable $HOME or %h is unknown to systemd. Below some details
    Starting my 2 Conky files from the Gnome terminal is no problem:
    conky -d -c $HOME/.Conky/ConkyToprc
    conky -d -c $HOME/.Conky/ConkyLogrc
    cat /etc/systemd/system/conky.service:
    [Unit]
    Description=Conky system monitor
    Documentation=man:conky(1)
    [Service]
    Type=forking
    ExecStart=/usr/bin/conky -d -c /home/viper/.Conky/ConkyToprc
    [Install]
    WantedBy=xinitrc.target
    [root@Arch viper]# systemctl status conky.service
    ● conky.service - Conky system monitor
    Loaded: loaded (/etc/systemd/system/conky.service; disabled)
    Active: failed (Result: core-dump) since Fri 2014-05-16 18:39:51 CEST; 10min ago
    Docs: man:conky(1)
    Process: 4833 ExecStart=/usr/bin/conky -d -c /home/viper/.Conky/ConkyToprc (code=dumped, signal=ABRT)
    May 16 18:39:51 Arch conky[4833]: Conky: $HOME environment variable doesn't exist
    May 16 18:39:51 Arch conky[4833]: conky: malloc.c:2369: sysmalloc: Assertion `(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof (struct malloc_chunk, fd)))) && old_size == ...
    May 16 18:39:51 Arch systemd-coredump[4834]: Process 4833 (conky) dumped core.
    May 16 18:39:51 Arch systemd[1]: conky.service: control process exited, code=dumped status=6
    May 16 18:39:51 Arch systemd[1]: Failed to start Conky system monitor.
    May 16 18:39:51 Arch systemd[1]: Unit conky.service entered failed state.
    Hint: Some lines were ellipsized, use -l to show in full.
    So even after changing the systemd unit file to use the full path /home/viper/.Conky/ConkyToprc it's still not working. I think after changing $HOME or %h Conky did accept the config file but doesn't recognize the $HOME variable in the config file anymore. Or maybe I'm missing something here... And I'm not even trying to load the second conky file Anyone an idea as where I need to look? Any help is highly appreciated. Thank you in advance.
    It seems to be a bit related to this: http://lists.freedesktop.org/archives/s … 06217.html
    Last edited by DarkLite1 (2014-05-17 16:48:04)

    Thank you everyone for your feedback, I really appreciate it Some things I would still like to clarify although I fully agree with your reasoning of not using systemd for my 'conky' idea here.
    @ANOKNUSA: Yes you are right, systemd starts everything simultaneously at boot time. The way I did my test was to start the unit manually from the Gnome terminal after already being logged on to Gnome. So in my point of view the $HOME variable did already exist at that point and there was no need to wait for the X server... So in theory, it should've been able to get the job done.
    @twelveeighty: So yes, I do believe you are right. systemd doesn't know $HOME at all.
    Than my final question to have this solved for me. What is the best way to have 2 instances of Conky running with each it's own config file? I tried the following already, but it was unsuccessful:
    cat /etc/profile.d/autostart.sh
    Exec=/usr/sbin/conky -d -c /home/viper/.Conky/ConkyToprc
    Exec=/usr/sbin/conky -d -c /home/viper/.Conky/ConkyLogrc
    cat /usr/share/gnome/autostart/conky.desktop
    [Desktop Entry]
    Type=Application
    Name=Conky
    Comment=Start conky script
    Exec=/usr/sbin/conky -d -c /home/viper/.Conky/ConkyToprc
    Exec=/usr/sbin/conky -d -c /home/viper/.Conky/ConkyLogrc
    OnlyShowIn=GNOME;
    X-GNOME-Autostart-Phase=Application
    When trying to follow the proposed solution found here https://wiki.archlinux.org/index.php/xinitrc there is no example file availble for .xinitrc in /etc/skel as suggested 'Copy the sample /etc/skel/.xinitrc file to your home directory' And if there was, how would the syntax be for 2 instances of Conky? Because when I read the Note it's not possible to add 2 lines of EXEC:
    Note: Make sure to uncomment only one exec line, since that will be the last command run from the script; all the following lines will just be ignored. Do NOT attempt to background your WM by appending a `&` to the line.
    /again: thanks for still helping me out and reading my jibber/jabber. I sometimes really feel like a noob here between all you pro's. But the only way of getting there is by falling and learning how to get up? Right Bruce?
    Last edited by DarkLite1 (2014-05-17 16:18:43)

  • [SOLVED] Question about conky-lua-arch.

    I've managed to get conky-lua-arch up and working except for one minor issue. When I launch it, it automatically displays on the far right side of my 2nd monitor. This leads me to believe its alignment is pre-configured to run on the right side of the screen, which is fine, but how do I get it to be on the right side of my "primary" monitor instead? I've looked thru /usr/share/conky-lua-arch/clock-rings.lua but could not find an alignment or position parameter. I also could not find any other conky-lua-arch config files to look at. Any tips or suggestions are appreciated, thanks.
    EDIT: The config file was located elsewhere. Solved.
    Last edited by GunnDawg (2015-05-22 08:53:10)

    Please remember to mark the thread as solved https://bbs.archlinux.org/viewtopic.php?id=130309

  • [Solved] Enlightenment and Conky

    Found this in a 2 year old thread that wasn't marked solved. Works perfectly. Thanks.
    [email protected] wrote:
    Hi Folks,
    I am running conky 1.8.1 on both e17 (16.999.57375) and KDE 4.5.11 on different boxes each with true transparency.   I.e.; you don't need Esetroot, feh, etc.   To make conk truely transparent you need a composite running and have the following in .conkyrc
    own_window yes
    # ARGB can be used for real transparency, note that a composite manager is required for real transparency
    own_window_argb_visual true
    # Set the transparency alpha value from 0 to 255
    own_window_argb_value 0
    own_window_type desktop
    See http://conky.sourceforge.net/config_settings.html
    Good luck,
    Don
    my full .conkyrc
    ==============================
    # http://conky.sourceforge.net/
    color1 F9F966
    color2 FF7F50
    color3 87CEFF
    color4 7FFF00
    color5 87CEFA
    default_color Chartreuse
    default_outline_color Dark Cyan
    default_shade_color Dark Cyan
    alignment bottom_left
    background yes
    border_width 1
    cpu_avg_samples 2
    double_buffer yes
    draw_borders no
    draw_graph_borders yes
    draw_outline no
    draw_shades no
    gap_x 25
    gap_y 15
    minimum_size 330 10
    maximum_width 330
    max_specials 512
    max_user_text 65536
    max_port_monitor_connections 64
    net_avg_samples 2
    no_buffers yes
    out_to_console no
    own_window yes
    # ARGB can be used for real transparency, note that a composite manager is required for real transparency
    own_window_argb_visual true
    # Set the transparency alpha value from 0 to 255
    own_window_argb_value 0
    own_window_type desktop
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    stippled_borders 2
    update_interval 2
    uppercase no
    use_spacer right
    use_xft yes
    xftalpha 0.8
    xftfont Bitstream Vera Sans Mono:size=9
    TEXT
    $color1$nodename ${alignc}$sysname $kernel ${alignr}$color${time %l:%M:%p}
    ${color1}Uptime:$color $uptime ${color1} Load:$color $loadavg
    ${color1}CPU0:$color ${cpu cpu0}% ${cpubar cpu0 5,85}${alignr 10}${color2}${hwmon 0 temp 1}$alignr${color1}${cpugraph cpu0 32,120 104E8B FF7F50 -t}
    ${color1}CPU1:$color ${cpu cpu1}% ${cpubar cpu1 5,85}${alignr 10}${color2}${hwmon 2 temp 1}$alignr${color1}${cpugraph cpu1 32,120 104E8B FF7F50 -t}
    ${color1}CPU2:$color ${cpu cpu2}% ${cpubar cpu2 5,85}${alignr 10}${color2}${hwmon 3 temp 1}$alignr${color1}${cpugraph cpu2 32,120 104E8B FF7F50 -t}
    ${color1}CPU3:$color ${cpu cpu3}% ${cpubar cpu3 5,85}${alignr 10}${color2}${hwmon 1 temp 1}$alignr${color1}${cpugraph cpu3 32,120 104E8B FF7F50 -t}
    ${color1}Fan 1: ${color2}${hwmon 4 fan 1} RPM ${color1}Fan 4: ${color2}${hwmon 4 fan 4} RPM
    ${color1}RAM Usage:$color2 $mem/$memmax - $memperc% $membar
    ${color1}Swap Usage:$color3 $swap/$swapmax - $swapperc% ${swapbar}
    ${color1}Entropy:$color ${entropy_avail}/${entropy_poolsize} ${entropy_bar}
    ${color1}Net Down:$color ${downspeed bond0} k/s ${color1}Net Up:$color ${upspeed bond0} k/s
    ${color1}${downspeedgraph bond0 32,155 104E8B FF7F50 -t} $alignr${color1}${upspeedgraph bond0 32,155 104E8B FF7F50 -t}
    ${color1}Disk I/O: $color${diskio} $alignr${color1}${diskiograph 32,155 104E8B FF7F50 -t 750}
    ${color2}/ ${fs_used /}/ ${fs_size /}${alignr}${fs_bar 5,120 /}
    ${color1}/boot ${fs_used /boot}/ ${fs_size /boot}${alignr}${fs_bar 5,120 /boot}
    ${color3}/Z ${fs_used /Z}/ ${fs_size /Z}${alignr}${fs_bar 5,120 /Z}
    ${color}/eSATA/1 ${fs_used /eSATA/1}/ ${fs_size /eSATA/1}${alignr}${fs_bar 5,120 /eSATA/1}
    ${color1}Top Processes: PID CPU% MEM%
    $color ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
    $color ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
    $color ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
    $color ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
    $color ${top name 3} ${top pid 5} ${top cpu 5} ${top mem 5}
    # Check for new email
    ${color1}[email protected]:$color ${texeci 120 imapfilter -c /home/don/.imapfilter/harden.lua | cut -d\ -f5,5} unseen
    # Last few syslog messages
    ${execi 30 sudo /Z/don/bin/conky_messg}

    Shark wrote:
    Here you will find everything you need to know about sound and troubleshooting it. Wiki is your friend ...
    Also, check /var/log/pacman.log to find out which packages you have removed.
    I think i found the problem...im not using login manager so im entering with tty...if I enter as root and do
    xinit
    and then
    [enlightenment_start]
    when i get to the interface i have sound..but if i enter as my user i dont..sooo the problem is in the permissions..i notice to that when i do reboot by the terminal this happen
    [nhull@localhost ~]$ reboot
    ==== AUTHENTICATING FOR org.freedesktop.login1.reboot ===
    Authentication is required for rebooting the system.
    Authenticating as: nhull
    Password:
    This is strange because i am suppose to be logged as nhull...thats why the sound is not working...but im so confused, why is this happening? xD
    Last edited by CyberNhull (2013-06-05 16:14:23)

  • [SOLVED] Problem With conky and or xcompmgr

    So I tried to search for this issue but i don't know quite how to explain through words on what is going on. basically i got corky installed. and so when i login my screen all around corky doesn't refresh. and i believe this to be because of xcompmgr. because thats when I installed it that is when my problem started. so here is a screenshot
    Last edited by Sicariuxs (2012-11-14 21:13:45)

    no i don't have the problem when xcompmgr is running (lol didn't mean corky!! kept thinking about league of legends xD) but the problem is that if i don't have xcompmgr running that i don't have true trnasparancy on guake or any of my other applications. what i believe it to be is that maybe conky doesn't do so well with compositing. because this also has happened to me with compiz. but i know it has to be possible to combine the two! i've seen it done all over youtube. but i keep getting this problem. any suggestions? and thanks for the quick response

  • [solved] Issue with conky and Kde 4

    I have a small issue with conky and KDE 4.2. I start conky with a script which I stored under ~/.kde/Autostart. The script is simple and looks like this..
    conky -c ~/.conkyrc_kde4
    This works fine. But when I restart the first KDE and check with ps, I have 2 instances of conky running. The instances keep on growing with the number of restarts.
    I think kde tries to restart all the apps which were running when the session was terminated. Is there a way to change this behavior in general or all the programs or for only a specific program like conky ?
    Last edited by rangalo (2009-07-28 19:02:17)

    I did
    Systemsettings > Advanced > Session Manager > Start with an empty session
    and put everything you want in Autostart

  • [Solved] Weather in conky won't work

    - I installed conkyforecast-bzr from AUR
    - I set my weather conky to run at startup pointing to the correct conkyrc file (I know it's correct because when I change it it restarts)
    - I pointed my conkyrc to the correct conkyForecast.template file
    - The fonts are installed to ~/.icons, /usr/share/icons, and usr/share/fonts/truetype
    - I found my XOAP location id and put it in the conkyrc file
    conkyrc:
    # conky weather config
    # set to yes if you want Conky to be forked in the background
    background yes
    # X font when Xft is disabled, you can pick one with program xfontsel
    #font 5x7
    #font 6x10
    #font 7x13
    #font 8x13
    #font 9x15
    #font *mintsmild.se*
    #font -*-*-*-*-*-*-34-*-*-*-*-*-*-*
    # Use Xft?
    use_xft yes
    # Xft font when Xft is enabled
    xftfont Bitstream Vera Sans Mono:size=9
    # Text alpha when using Xft
    xftalpha 0.8
    # Update interval in seconds
    update_interval 1.0
    # This is the number of times Conky will update before quitting.
    # Set to zero to run forever.
    total_run_times 0
    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes
    # Minimum size of text area
    minimum_size 300 0
    maximum_width 300
    # Draw shades?
    draw_shades yes
    # Draw outlines?
    draw_outline no
    # Draw borders around text
    draw_borders no
    draw_graph_borders yes
    # Stippled borders?
    stippled_borders 8
    # border margins
    border_inner_margin 4
    # border width
    border_width 1
    # Default colors and also border colors
    default_color white
    default_shade_color black
    default_outline_color white
    # own window options
    own_window yes
    own_window_type desktop
    own_window_transparent no
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    # Text alignment, other possible values are commented
    alignment top_left
    #alignment top_right
    #alignment bottom_left
    #alignment bottom_right
    # Gap between borders of screen and text
    # same thing as passing -x at command line
    gap_x 10
    gap_y 50
    # Subtract file system buffers from used memory?
    no_buffers yes
    # set to yes if you want all text to be in uppercase
    uppercase no
    # number of cpu samples to average
    # set to 1 to disable averaging
    cpu_avg_samples 2
    # number of net samples to average
    # set to 1 to disable averaging
    net_avg_samples 2
    # Force UTF8? note that UTF8 support required XFT
    override_utf8_locale yes
    # Add spaces to keep things from moving about? This only affects certain objects.
    use_spacer right
    # colours
    color1 white
    # light blue
    color2 3465A4
    # orange
    #E77320
    color3 FC8820
    # green
    color4 78BF39
    # red
    color5 CC0000
    text_buffer_size 2048
    # variable is given either in format $variable or in ${variable}. Latter
    # allows characters right after the variable and must be used in network
    # stuff because of an argument
    # stuff after 'TEXT' will be formatted on screen
    TEXT
    ${offset -5}${color 3465A4}${font StyleBats:style=CleanCut:size=12}q ${voffset -2}${color}${font Bitstream Vera Sans Mono:style=Bold:size=11}Weather${font} ${hr}${color1}
    ${color fffff0}${execpi 1800 conkyForecast --location=USNY0996 --template=/home/me/.conky/conkyForecast.template}${color}
    conkyForecast.template:
    ${voffset 5}${goto 10}${font ConkyWeather:style=Bold:size=40}[--datatype=WF]${font}
    ${voffset 5}${goto 20}${color 3465A4}[--datatype=HT --hideunits --centeredwidth=3]$color/${color 3465A4}[--datatype=LT --hideunits --centeredwidth=3]$color
    ${voffset 10}${goto 10}${font ConkyWindNESW:size=40}[--datatype=BS]${font}
    ${voffset 5}${goto 10}${color 3465A4}[--datatype=WS --imperial] - [--datatype=WD]$color
    ${voffset -145}${goto 100}${color white}${font Bitstream Vera Sans Mono:style=Bold:size=14}[--datatype=CT]${font}
    ${voffset 10}${goto 100}${color 3465A4}Station: ${color white}[--datatype=OB]
    ${goto 100}${color 3465A4}Rain: ${color white}[--datatype=PC]
    ${goto 100}${color 3465A4}UV: ${color white}[--datatype=UI] - [--datatype=UT]
    ${goto 100}${color 3465A4}Humidity: ${color white}[--datatype=HM]
    ${goto 100}${color 3465A4}Dew Point: ${color white}[--datatype=DP]
    ${goto 100}${color 3465A4}Sunrise/Set: ${color white}[--datatype=SR] / [--datatype=SS]
    ${goto 100}${color 3465A4}Bar: ${color white}[--datatype=BR] - [--datatype=BD]
    ${goto 100}${color 3465A4}Moon: ${color white}[--datatype=MP]
    ${voffset 25}${goto 25}${color 3465A4}[--datatype=DW --startday=1 --shortweekday]${goto 100}[--datatype=DW --startday=2 --shortweekday]${goto 175}[--datatype=DW --startday=3 --shortweekday]${goto 250}[--datatype=DW --startday=4 --shortweekday]$color
    ${voffset 10}${goto 10}${font ConkyWeather:size=32}[--datatype=WF --startday=1 --endday=4 --spaces=3]${font}
    ${voffset 15}${goto 15}${color 3465A4}[--datatype=HT --startday=1 --hideunits --centeredwidth=3]$color/${color 3465A4}[--datatype=LT --startday=1 --hideunits --centeredwidth=3]${goto 90}[--datatype=HT --startday=2 --hideunits --centeredwidth=3]$color/${color 3465A4}[--datatype=LT --startday=2 --hideunits --centeredwidth=3]${goto 170}[--datatype=HT --startday=3 --hideunits --centeredwidth=3]$color/${color 3465A4}[--datatype=LT --startday=3 --hideunits --centeredwidth=3]${goto 245}[--datatype=HT --startday=4 --hideunits --centeredwidth=3]$color/${color 3465A4}[--datatype=LT --startday=4 --hideunits --centeredwidth=3]
    ${color 3465A4}${font Bitstream Vera Sans Mono:size=7}${alignr 20}Last Update: [--datatype=LU]${font}
    All that shows up on my desktop for conky is "Weather -----------------------"
    I've spent hours trying to figure this out, scoured the internet for info, and I can't find anything wrong with my files.
    Last edited by herrvideman (2010-09-08 15:05:14)

    Please read /usr/share/conkyforecast/README, I'm assuming you need to register at http://www.weather.com/services/xmloap.html and fill in conkyForecast.config. The skel file is located at /usr/share/conkyforecast/conkyForecast.config just copy it into your home and fill it out.

  • [Solved] Lua with Conky gives unwanted background color

    Hi,
    I've Googled and ransacked the forum looking for an answer. I have Conky with lua on KDE4 and I cannot run both together without creating an unwanted background. After getting sidetracked with KDE4 transparency considerations, I discovered that if I start Conky without Lua, I can get proper transparency. If I start Conky with Lua enabled I get a background color. The Lua script doesn't seem to have any background settings. I'm not sure what files are relevant to post, the conkyrc and or the Lua script, which is quite large. I'm reasonably au fait with Conky but this is the first Conky I cannot get to function correctly. My basic question is how to use Lua without starting a background color. Here is where I got the original files http://www.linuxandlife.com/2012/06/get … -your.html . Of course, I can post the relevant Lua file if necessary but, as I  mentioned, it is quite large and I'm not clear on forum rules regarding posting large files of this type. Here's how Conky starts Lua:
    lua_load ~/.conky/avi9526_conky.lua
    lua_draw_hook_pre Widgets
    Thanks for your time.
    In case anyone is interested, changing line 1236 of the Lua script to cairo_set_source_rgba(CairoContext, 0.6, 0.61, 0.62, 0.0) did the trick.
    Last edited by Foxblood (2013-04-28 14:07:15)

    If you set your minimum_size and maximum_width variables you can make it any size that you want.
    So, lets say that you are using a 1280x1024 screensize.
    You can set your minimum_size to be 1200.  If you don't provide a second option, you are specifying the width.
    Then, if you set your maximum_width to be 1280,  or, if you want a 1 pixel gap on either side 1278,  then your conky will not go off the sides of the screen, and if you use any align option, then it will stay within that specified width.
    P.S.  The reason that it doesn't go all the way across your screen right now, is because there is not enough information being displayed to warrant anything larger.
    HTH
    Last edited by Knute (2010-08-09 21:22:17)

  • [SOLVED] dwm + dzen2 + conky-cli misconfigured

    I have been trying to pipe conky status to dzen2 and it is doing my head in.
    My .xinitrc
    #!/bin/sh
    # ~/.xinitrc
    setxkbmap -option terminate:ctrl_alt_bksp &
    eval `cat ~/.fehbg` &
    numlockx &
    xscreensaver -no-splash &
    # Dzen & conky
    conky | dzen2 -fg '#dcdcdc' -bg '#3f3f3f' -ta r -fn '-*-terminus-*-r-normal-*-*-120-*-*-*-*-iso8859-*' &
    # Start dwm
    exec ck-launch-session ~/Scripts/dwm-start
    .conkyrc
    background no
    out_to_console yes
    update_interval 2
    total_run_times 0
    use_spacer none
    double_buffer yes
    TEXT
    ${if_existing /sys/class/power_supply/BAT0/present}^fg(#999999)BAT^fg()${battery_percent}%${else}AC${endif} * CPU ${cpu cpu1}% RAM ${memperc}% * / ${fs_used_perc /}% /home ${fs_used_perc /home}% * PKG ${execpi 900 ~/Scripts/pacman-up.pl} * ${if_existing /proc/net/route ra0}Down ${downspeedf ra0}K/s Up ${upspeedf ra0}K/s ${else} ${if_existing /proc/net/route eth0} Down ${downspeedf ra0}K/s Up ${upspeedf ra0}K/s${endif} ${endif}* ${time %I:%M%P}
    Start dwm script
    conky | while read line; do
    xsetroot -name "$line";
    done | while true; do
    dwm > /dev/null; done;
    Could anyone point me at what I am doing wrong? I have tried following examples in the forums, including this one and this one -- but I either end up with dwm 5.7.2 in the corner, or conky prints out the ^fg etc...
    Any help would be appreciated at this point...
    Last edited by jasonwryan (2009-11-20 06:11:51)

    Thanks for the suggestions Skanky. The broken line in conky was a copy/paste error into the browser - it is a single line conky (I've edited the OP to reflect that).
    I think it is a problem with the way conky-cli and dzen work together. If I run:
    echo "testing" | dzen2 -fg '#dcdcdc' -bg '#3f3f3f' -ta r -fn '-*-terminus-*-r-normal-*-*-120-*-*-*-*-iso8859-*' -p
    it prints as expected.
    Similarly, if I comment the conky | dzen2 line in .xinintrc and just run conky-cli from the start script it works...
    Trying to get then to work together, however, is another matter.
    /edit
    Some progress: it seems that it is being drawn - if I Mod-Shift-q the dwm status bar briefly disappears and I can see conky momentarily. I tried starting conky | dzen2 after dwm but that didn't work.
    I have also added some options, which seem to have helped, my .xinintrc entry now looks like:
    conky | dzen2 -x '500' -e '' -fg '#dcdcdc' -bg '#3f3f3f' -ta r -fn '-*-terminus-*-r-normal-*-*-120-*-*-*-*-iso8859-*' -p &
    Last edited by jasonwryan (2009-11-19 16:57:13)

Maybe you are looking for

  • Error in Absences Quota Generation

    Dear All, I have generated absences quota for all the employees. But its generating and showing the same kind of absences in terms of no of days for newly joined employees also. For example if an employee joined on nov for him also Earned leave is ge

  • Macbook Air 13" MD232 Downgrade

    Good morning. I bought my Macbook Air MD232 3 weeks ago and it had factory installed Mac OS X Lion. I decided to upgrade up to Mountain Lion via special Apple code for AppStore. Than I noticed that I don't like it and I decied to downgrade. I tried t

  • How to use the integrated ITS server in WAS6.40 for WEBGUI

    Hi, I am testing the Portal 6.0SP6 on WAS6.40SP7. Using User Mapping, I am able to connect and call some transaction to R/3 System (4.6c) and the ITS servers for the R/3 system.  If I am going to use webgui to call a transaction, do I need the ITS se

  • Vendor Selection in Shopping Cart

    Hi We are having nearly 20 company codes with in SAP and 5 company codes are using EBP. At the moment, all vendors designated for EBP are available when creating a shopping cart. Problem: User doesn't knows by looking at the vendor whether that vendo

  • Webdynpro ABAP component TREE - on event onaction do onloadchildren

    Hi experts, I have a specific requirement from my client. On our custom WD ABAP app (see below) which has a CL_WD_TREE component we want to force the event onaction on the tree node to do exactly the same of event onloadchildren of the node selected: