Page 2161 of 2348 FirstFirst ... 1161166120612111215121592160216121622163217122112261 ... LastLast
Results 21,601 to 21,610 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #21601
    Join Date
    Oct 2008
    Beans
    3,509

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Skoobs View Post
    hey guys, lots of beautiful setups in here.

    I have installed ubuntu 12.04LTS and found this while looking for a way to monitor CPU and GPU temps that I could integrate with the GUI. I dont need a calendar or weather or any of that stuff, i just want CPU and GPU temps, maybe a couple of other things, but if possible, I would like to have it in the bar on top of ubuntu. Is this possible?

    I think I will keep researching this program and look for a way to have the CPU and GPU temps displayed in the corner permanently until i find out.
    You can put conky under a fully transparent unity panel.
    The panel has to be 100% transparent else the conky gets blurred out.

    Use in your conky config
    Code:
    own_window_type override
    own_window_transparent no
    own_window_colour 182547
    The conky own_window_colour will give colour to the unity panel.

    Set width and min length in conky.
    eg for my screen width of 1680 I use
    Code:
    minimum_size 1680 19
    maximum_width 1680
    Then position what you want to show using ${goto xx}

    I show cpu activity and temp, hdd and gpu temps, and memory and network usage.
    Attached Images Attached Images
    Last edited by stinkeye; February 3rd, 2013 at 11:16 AM.

  2. #21602
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    OOPS! ^^ up there stinkyye beat me to it and I didn't see it.
    And a nice unity panel solution to boot.
    Good stuff stinkeye!

    @ Skoobs

    CPU

    For CPU you need to install lm-sensors if it isn't already installed.
    After it is installed run:
    Code:
    sudo sensors-detect
    - answer yes to everything.

    Then run "sensors"
    Code:
     sector11 @ sector11
     03 Feb 13 | 07:16:04 ~
             $ sensors
    acpitz-virtual-0
    Adapter: Virtual device
    temp1:        +30.0°C  (crit = +110.0°C)
    
    k10temp-pci-00c3
    Adapter: PCI adapter
    temp1:        +34.9°C  (high = +70.0°C)
    
    f71862fg-isa-0a00
    Adapter: ISA adapter
    +3.3V:        +3.46 V  
    in1:          +1.35 V  
    in2:          +1.51 V  
    in3:          +0.86 V  
    in4:          +0.00 V  
    in5:          +0.00 V  
    in6:          +0.00 V  
    3VSB:         +3.39 V  
    Vbat:         +2.90 V  
    fan1:        2454 RPM
    fan2:           0 RPM  ALARM
    fan3:           0 RPM  ALARM
    temp1:        +45.0°C  (high = +85.0°C, hyst = +81.0°C)
                           (crit = +70.0°C, hyst = +66.0°C)  sensor = transistor
    temp2:        +36.0°C  (high = +85.0°C, hyst = +81.0°C)
                           (crit = +100.0°C, hyst = +96.0°C)  sensor = thermistor
    temp3:       +127.0°C  (high = +70.0°C, hyst = +68.0°C)  ALARM (CRIT)
                           (crit = +85.0°C, hyst = +83.0°C)  sensor = transistor
    
     sector11 @ sector11
     03 Feb 13 | 07:16:07 ~
             $
    Figuring out what temp1, temp1, temp1 temp2 temp3 etc etc from sensors is confusing.

    There is a nice little bash script you can use to find out without hassle: inxi
    Code:
     03 Feb 13 | 07:33:29 ~
             $ inxi -s
    Sensors:   System Temperatures: cpu: 44.0C mobo: 36.0C gpu: 42C 
               Fan Speeds (in rpm): cpu: 2454 fan-2: 0 fan-3: 0 
     sector11 @ sector11
     03 Feb 13 | 07:39:46 ~
             $
    compare that with 'sensors' and you know what is what.

    Once you have that it's easier. I use the "platform" method.

    Code:
     CPU: ${platform f71882fg.2560 temp 1}
    MOBO: ${platform f71882fg.2560 temp 2}
    NOTE: The hwmon method is unreliable as it has a tendency to load in a different order on occasion.

    GPU

    For GPU it depends on what Video card you use. I use a NVIDIA card so mine is simple:

    Code:
    ${nvidia temp}
    IBM:
    Code:
    ${ibm_temps N}
    I'm not sure but maybe you need:
    Code:
    ${execi 5 ibm_temps N}
    • If running the IBM ACPI, displays the temperatures from the IBM temperature sensors (N=0..7) Sensor 0 is on the CPU, 3 is on the GPU.


    NVIDIA:
    • threshold - The thresholdtemperature at which the gpu slows down
    • temp - Gives the gpu current temperature
    • ambient - Gives current air temperature near GPU case
    • gpufreq - Gives the current gpu frequency
    • memfreq - Gives the current mem frequency
    • imagequality - Which imagequality should be chosen by OpenGL applications


    And just because it's a temperature as well:

    HDD

    You might want to look at a hard drive temperature as well, install hddtemp for that - when it goes through the setup sequence there are three questions; answer Yes; Enter; No

    Now if your HDD is "sda":
    Code:
    ${execi 5 hddtemp -n /dev/sda}°
    ... the -n flag trims the output to just the number.

    In a terminal run 'hddtemp /dev/sda' to see everything.
    Code:
     03 Feb 13 | 07:30:46 ~
             $ hddtemp /dev/sda
    /dev/sda: WDC WD2500AAJS-00VWA0: 34°C
     sector11 @ sector11
     03 Feb 13 | 07:33:29 ~
             $
    Bar in top

    Couple of options:
    In the conkyrc file above TEXT use:
    Code:
    own_window_type panel
    Not my choice but this is about options, not "Do This!" I've seen some really nice "panels"

    or you can use:
    Code:
    gap_x 0 # left-right
    gap_y 0 # up-down
    
    alignment top_middle
    TEXT

    ... where under TEXT could be:
    Code:
    TEXT
    Time: ${time %T}\
       Date: ${time %x}\
       Uptime: ${uptime_short}\
       CPU: ${platform f71882fg.2560 temp 1}°\
       MB: ${platform f71882fg.2560 temp 2}°\
       GPU: ${nvidia temp}°\
       HD: ${execi 5 hddtemp -n /dev/sda}°
    Last edited by Sector11; February 3rd, 2013 at 12:37 PM.

  3. #21603
    Join Date
    Feb 2013
    Beans
    1

    Re: Post your .conkyrc files w/ screenshots

    wow I love that setup with it run across the top. very nice. here is what I made tonight:



    thanks guys! will do more tomorrow probably.

    heres my code too:

    Code:
    background yes
    use_xft yes
    xftfont 123:size=10
    xftalpha 0
    update_interval 0.5
    total_run_times 0
    own_window yes
    own_window_type normal
    own_window_transparent yes
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    double_buffer yes
    minimum_size 250 5
    maximum_width 400
    draw_shades no
    draw_outline no
    draw_borders no
    draw_graph_borders no
    default_color gray
    default_shade_color red
    default_outline_color green
    alignment bottom_right
    gap_x 1210
    gap_y 10
    no_buffers yes
    uppercase no
    cpu_avg_samples 2
    net_avg_samples 1
    override_utf8_locale yes
    use_spacer right
    text_buffer_size 256
    
    TEXT
    ${font Arial:size=22}${color Tan1}U B U N T U ${color Ivory}1 2 . 0 4 ${color DimGray}L T S
    ${font Arial:bold:size=10}${color Tan1}SYSTEM ${color Ivory} ${hr 1}
    $font${color DimGray}Upload:${alignr}${upspeed eth0}
    $font${color DimGray}Download:${alignr}${downspeed eth0}
    $font${color DimGray}Uptime:${alignr}$uptime
    
    ${font Arial:bold:size=10}${color Tan1}PROCESSOR ${color Ivory} ${hr 1}
    ${cpugraph 000000 ffffff}
    $font${color DimGray}Model $alignr i5-3570K
    $font${color DimGray}Freq. ${alignr}$freq MHz
    $font${color DimGray}Temp ${alignr}${color Tan1}${execpi 5 sensors | grep temp1 | awk '{print $2}' | cut -c2-3}$font${color DimGray}°C
    $font${color DimGray}Usage:$color $font${color DimGray}${ALIGNR}$cpu%
    
    ${font Arial:bold:size=10}${color Tan1}GRAPHICS ${color Ivory} ${hr 1}
    ${cpugraph nvidia gpufreq 000000 ffffff}
    $font${color DimGray}Model $alignr GTX 580
    $font${color DimGray}Freq.${alignr}${execi 1 nvidia-settings -query GPUCurrentClockFreqs | perl -ne 'print $1 if /GPUCurrentClockFreqs.*?: (\d+)./;'}MHz
    $font${color DimGray}Temp. ${alignr}${color Tan1}${execi 60 nvidia-settings -query GPUCoreTemp | perl -ne 'print $1 if /GPUCoreTemp.*?: (\d+)./;'}°C
    
    ${font Arial:bold:size=10}${color Tan1}MEMORY ${color Ivory} ${hr 1}
    ${memgraph 000000 ffffff}
    $font${color DimGray}Usage:$font${color DimGray}${ALIGNR} $mem
    $font${color DimGray}Percent:$font${color DimGray}${ALIGNR}$memperc%
    	
    $alignr$font${color DimGray}$sysname $kernel $machine

  4. #21604
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots



    So much for: "i just want CPU and GPU temps, maybe a couple of other things, but if possible, I would like to have it in the bar on top of ubuntu. Is this possible?"

    Oh well, it's all a learning experience.

    Suggestion: You should use thumbnails for images.

    You think he caught the bug yet stinkeye?

  5. #21605
    Join Date
    Oct 2008
    Beans
    3,509

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Sector11 View Post


    So much for: "i just want CPU and GPU temps, maybe a couple of other things, but if possible, I would like to have it in the bar on top of ubuntu. Is this possible?"

    Oh well, it's all a learning experience.

    Suggestion: You should use thumbnails for images.

    You think he caught the bug yet stinkeye?
    Quote Originally Posted by Skoobs View Post
    thanks guys! will do more tomorrow probably.
    Yeah, he just threw the "probably" on the end in a feeble attempt
    to hide the early symptoms.

  6. #21606
    Join Date
    Jul 2012
    Location
    Oklahoma, USA
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by stinkeye View Post
    Yeah, he just threw the "probably" on the end in a feeble attempt
    to hide the early symptoms.
    I give it a week (maybe two) until his Conky spans from the bottom of the screen to the top
    Who's Awesome? You're Awesome.

  7. #21607
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by stinkeye View Post
    Yeah, he just threw the "probably" on the end in a feeble attempt
    to hide the early symptoms.
    =D> =D> Well said! hehehehehehe

    Quote Originally Posted by Petro Dawg View Post
    I give it a week (maybe two) until his Conky spans from the bottom of the screen to the top
    You really give him that long?

    I'm thinking Wednesday he'll start sweating!

    And Friday night will be an all-nighter.

  8. #21608
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Remember when text conkys with lines ( | - _ ) and + were popular.

    Well while doing some house cleaning in /media/5/conky I came across a couple.

    One was HUGE and I just broke it up into two as it wasn't finished and looked HORRIBLE!

    However, once I took the conkyForecast section out of it and popped it into it's own conky .... well you be the judge ...


    Everything to the left of the weather is one conky ... and not a single ${voffset} in the box.

    Now another one I found was 'basically' what you see on the extreme left. I did some quik editing and changed the font to my favourite mono font today: monofur.

    I changed the | _ - and + for the ASCII stuff:
    Code:
    ╔ ═ ╦ ═ ╗   ┌ ─ ┬ ─ ┐
    
    ║   ║   ║   │   │   │
    
    ╠ ═ ╬ ═ ╣   ├ ─ ┼ ─ ┤ 
    
    ║   ║   ║   │   │   │
    
    ╚ ═ ╩ ═ ╝   └ ─ ┴ ─ ┘
    
    ╔═╦═╗   ┌─┬─┐
    ║ ║ ║   │ │ │
    ╠═╬═╣   ├─┼─┤ 
    ║ ║ ║   │ │ │
    ╚═╩═╝   └─┴─┘
    and I'm really impressed with how monofur used those: 8)


    An old style
    with a new look!

    EDIT: I think I have an old stinkeye conky here, I should go digging...
    Last edited by Sector11; February 4th, 2013 at 12:04 AM.

  9. #21609
    Join Date
    Feb 2013
    Beans
    1

    Re: Post your .conkyrc files w/ screenshots

    I can't seem to get CPU temp to work, and I can't figure out how to run that inxi script.

    also, my GPU graph is the same as my CPU graph, I believe. Is there a way to graph GPU usage?
    Last edited by Skoobs; February 3rd, 2013 at 11:31 PM.

  10. #21610
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Skoobs View Post
    I can't seem to get CPU temp to work, and I can't figure out how to run that inxi script.

    also, my GPU graph is the same as my CPU graph, I believe. Is there a way to graph GPU usage?
    Did you install inxi?

    Code:
     sector11 @ sector11
     03 Feb 13 | 20:01:12 ~
             $ whereis inxi
    inxi: /usr/sbin/inxi /usr/local/bin/inxi /usr/share/man/man1/inxi.1.gz
     sector11 @ sector11
     03 Feb 13 | 20:01:20 ~
             $
    if you did in a terminal:
    Code:
    inxi -s
    ... should give you sensors information

    please show the results of:
    Code:
    sensors

Page 2161 of 2348 FirstFirst ... 1161166120612111215121592160216121622163217122112261 ... 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
  •