Results 1 to 2 of 2

Thread: Superkaramba question

  1. #1
    Join Date
    Jul 2012
    Location
    /tropics/islands/statia
    Beans
    275
    Distro
    Kubuntu 12.04 Precise Pangolin

    Superkaramba question

    I have a nice Superkaramba theme called sysmaloon (it's a bit like Conky) that I have been tweaking to suit my needs and hardware.
    As I have an Asus motherboard that is not really supported by lm-sensors, I don't get voltages or fan speeds. Instead I've been putting in some other system info.
    On one line, it displays the CPU clocks. I have a dual core, hyperthreading CPU, so there are four values.
    The strange thing is that this:

    Code:
    cat /proc/cpuinfo | grep MHz | awk '{print $4}' | cut -c -4 | paste -sd " "
    works in bash, but not in Superkaramba. Does anyone have an idea why not? Does Superkaramba use a different shell to parse its themes?

    I solved it with:

    Code:
    cat /proc/cpuinfo | grep MHz | awk '{print $4}' | cut -c -4 |  xargs -I {} echo {}  | xargs echo"
    A bit more clunky, but it works.
    Still curious why the other one does not work though.

  2. #2
    Join Date
    Jul 2012
    Location
    /tropics/islands/statia
    Beans
    275
    Distro
    Kubuntu 12.04 Precise Pangolin

    Re: Superkaramba question

    Maybe a good time for a bump.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •