Page 78 of 287 FirstFirst ... 2868767778798088128178 ... LastLast
Results 771 to 780 of 2865

Thread: HOWTO: VinDSL Conky Script

  1. #771
    Join Date
    Aug 2009
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: HOWTO: VinDSL Conky Script

    paramvir,
    Figured out the avatar issue.

    I made the changes you suggested and the 2nd 2 cores are still the same.

    Code:
    ##################################
    ##          PROCESSORS          ##
    ##################################
    ${voffset 4}${font DroidSans:bold:size=8}${color4}PROCESSORS${offset 8}${color6}${voffset -2}${hr 1}${font}
    ${voffset 4}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU1${offset 5}${font DroidSans:size=8.3}${cpu cpu1}%${font}
    ${voffset 2}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU2${offset 5}${font DroidSans:size=8.3}${cpu cpu2}%${font}
    ${voffset 2}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU3${offset 5}${font DroidSans:size=8.3}${cpu cpu3}%${font}
    ${voffset 2}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU4${offset 5}${font DroidSans:size=8.3}${cpu cpu4}%${font}
    Here is the picture. It puts the scroll bars way down below on the hard drive and root. I didn't know how to offset it.



    Thanks!

  2. #772

    Thumbs up Re: HOWTO: VinDSL Conky Script

    Quote Originally Posted by Cavsfan View Post
    paramvir,
    Figured out the avatar issue.

    I made the changes you suggested and the 2nd 2 cores are still the same.

    Thanks!
    Well - you have to play a little - it is lua juice you are missing. Just check what they have for the lua and just increment or extend - I am pretty late in the night here lol

    Re conkywx - if you can find a nearby xml station - private weather station you will be really happy - but so long as it is working - Location weather is very good with WU - others have so much lag.

    Moon rise n set has kept me awake - the pesky fellow spins so fast around us he he - already have the sun in the bag and the moon phases etc - just the moon rise n set

    cheers

  3. #773
    Join Date
    Nov 2008
    Location
    Tampa, Florida
    Beans
    38

    Re: HOWTO: VinDSL Conky Script

    Quote Originally Posted by Cavsfan View Post
    paramvir,
    Figured out the avatar issue.

    I made the changes you suggested and the 2nd 2 cores are still the same.


    Thanks!
    Cavsfan,

    You want to be looking in the bargraph_small.lua file in your .conky folder to adjust the bargraphs up and down.

    Code:
    {	--[ Graph for CPU8 ]--
    			name="cpu",
    			arg="cpu8",
    			max=100,
    			alarm=50,
    			alarm_colour={0xFF0000,0.72},
    			bg_colour={0xFFFFFF,0.25},
    			fg_colour={0x00FF00,0.55},
    			mid_colour={{0.45,0xFFFF00,0.70}},
    			x=82,y=254,
    			blocks=55,
    			space=1,
    			height=2,width=5,
    			angle=90,
    			smooth=true
    			},
    Adjust the Y axis to position your bar graphs.

  4. #774
    Join Date
    Aug 2009
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: HOWTO: VinDSL Conky Script

    Finally got the extra 2 cpu bars working but, for some reason it quit updating.
    It is like it is stuck until I logoff and back on.




    EDIT: Nevermind it's updating fine now. I had to make the TOP PROCESSES 10 so it would fill the screen and also had to up the max_specials from 600 to 700 to allow the increase.
    Last edited by Cavsfan; December 23rd, 2012 at 07:53 PM.

  5. #775
    Join Date
    Jan 2012
    Beans
    2

    Re: HOWTO: VinDSL Conky Script

    I found how to insert the battery and wifi indicator in Conky. Now my question is whether it is possible to make those Bars same as the processes bar and all others from picture?



    I have no idea what I need to put in the field "name" and "Arg" from bargraph_small file:

    An example of the processor code:

    Code:
    name="cpu",
    arg="cpu1",
    I've tried everything and the wireless (wireless_link_bar, wlan0) and battery (battery_bar, battery, BAT0) and various modifications of the above "code", but could not make Bar to moves. Does anyone have an idea?

    Otherwise, the code I used looks like this:
    For wireless
    Code:
    ${wireless_link_bar wlan0}
    For battery:
    Code:
    ${battery BAT0}
    ${battery_bar BAT0}
    ${battery_time BAT0}

  6. #776
    Join Date
    Aug 2009
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: HOWTO: VinDSL Conky Script

    Cut the Top Processes to 3 and added the CPU/GPU temperatures.
    Code:
    ##################################
    ##         TEMPERATURES         ##
    ##################################
    ${voffset 15}${font DroidSans:bold:size=8}${color4}CPU/GPU TEMPERATURES${offset 8}${color6}${voffset -2}${hr 1}${font}
    ${voffset 4}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU Core 1 Temp: $alignr${execi 600 sensors -f | grep 'Core 0' | awk '{print $3}' | cut -c2-9}
    ${voffset 4}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU Core 2 Temp: $alignr${execi 600 sensors -f | grep 'Core 1' | awk '{print $3}' | cut -c2-9}
    ${voffset 4}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU Core 3 Temp: $alignr${execi 600 sensors -f | grep 'Core 2' | awk '{print $3}' | cut -c2-9}
    ${voffset 4}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU Core 4 Temp: $alignr${execi 600 sensors -f | grep 'Core 3' | awk '{print $3}' | cut -c2-9}
    ${voffset 4}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}GPU Temperature: $alignr${execi 10 nvidia-settings -q GPUCoreTemp | awk '{if (NR==2) {print ($4*9)/5+32}}'} °F

  7. #777
    Join Date
    Aug 2009
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: HOWTO: VinDSL Conky Script

    EDIT: See the bottom. I think I got it working.
    I wanted to change the HOME disk usage under HDD to my 1TB USB drive.
    I have already changed the conky and it outputs the correct amount of used space but, I don't know what the correct piece would be to put where the blue name is for the lua bar:

    (This is from /home/cavsfan/.conky/bargraph_testing.lua)

    Code:
            {    --[ Graph for Home ]--
                name="fs_used_perc",
                arg="/home",
                max=100,
                alarm=50,
                alarm_colour={0xFF0000,0.72},
                bg_colour={0xFFFFFF,0.25},
                fg_colour={0x00FF00,0.55},
                mid_colour={{0.45,0xFFFF00,0.70}},
                x=15,y=342,
                blocks=77,
                space=1,
                height=2,width=5,
                angle=90,
                smooth=true
                },
    Code:
            {    --[ Graph for Fantom USB ]--
                name="fs_used_perc",
                arg="/media/cavsfan/Fantom",
                max=100,
                alarm=50,
                alarm_colour={0xFF0000,0.72},
                bg_colour={0xFFFFFF,0.25},
                fg_colour={0x00FF00,0.55},
                mid_colour={{0.45,0xFFFF00,0.70}},
                x=15,y=342,
                blocks=77,
                space=1,
                height=2,width=5,
                angle=90,
                smooth=true
                },
    I want to change /home to the red above.
    The only problem is I don't know what to replace fs_used_perc with to make the bar correspond to the usage of the USB drive.

    I have dug pretty extensively and am hoping this is an easy one for you.

    Thanks!
    EDIT: I got it working!
    Soon after I posted this I put fs_used in place of fs_used_perc and that didn't work so I switched it back and now it appears to be working.
    Last edited by Cavsfan; December 24th, 2012 at 11:51 PM. Reason: EDIT: Nevermind I got it working

  8. #778
    Join Date
    Aug 2009
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: HOWTO: VinDSL Conky Script

    On Raring and Quantal I had to use this for the USB drive in the .conky file and in the bargraph_testing.lua file:

    /media/cavsfan/Fantom

    But, in Precise and Lucid I had to use this in both:

    /media/Fantom

    I was puzzled at first but, then I seen how the earlier versions look at media.

  9. #779
    Join Date
    Aug 2010
    Location
    Arizona USA
    Beans
    3,001
    Distro
    Ubuntu Development Release

    Re: HOWTO: VinDSL Conky Script

    Good job, Cavsfan!
    Quote Originally Posted by Cavsfan View Post
    On Raring [...]
    Now, you can add " | 13.04 | " to your sig...


    Wanted to let everyone know, I'm not ignoring your post(s). I check this thread several times a day.

    I've just been distracted with Gnome3 testing. Don't use this PPA (yet) unless you like breakage:

    Code:
    ppa:gnome3-team/gnome3-staging
    Gnome-Shell 3.7.1 / Linux 3.8-rc1 are working fine...




    But, Unity is a mess. Trying to sort it -- that's all...
    Intel ® P4 Extreme Edition 3.4 (Gallatin) || DFI ® LanParty PRO875B rev B1
    Crucial ® Ballistix Tracer PC4000 1GB || Mountain Mods U2-UFO Opti-1203
    XFX 7600GT 560M AGP (PV-T73A-UDF3) || Corsair HX520W Modular PSU

  10. #780
    Join Date
    Aug 2010
    Location
    Arizona USA
    Beans
    3,001
    Distro
    Ubuntu Development Release

    Re: HOWTO: VinDSL Conky Script

    Finally got around to installing Conky on my netbook...


    ASUS Eee PC 1000HD / Peppermint Two OS (Lubuntu Fork) / Conky 1.8.0 / ConkyWX 0.7.9-1



    Needs a lot of tweaking, but... Heh, it's a start.
    Intel ® P4 Extreme Edition 3.4 (Gallatin) || DFI ® LanParty PRO875B rev B1
    Crucial ® Ballistix Tracer PC4000 1GB || Mountain Mods U2-UFO Opti-1203
    XFX 7600GT 560M AGP (PV-T73A-UDF3) || Corsair HX520W Modular PSU

Page 78 of 287 FirstFirst ... 2868767778798088128178 ... LastLast

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
  •