Page 2196 of 2348 FirstFirst ... 1196169620962146218621942195219621972198220622462296 ... LastLast
Results 21,951 to 21,960 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #21951
    Join Date
    Dec 2009
    Beans
    263

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by dk75 View Post
    Save conky-start-delayed.sh in ~/.local/bin and make desktop file in autostart directory:

    I don't have ~/.local/bin. At ~/.local/ , my only subdirectory is share.

    At least it still works if I load it manually...
    Last edited by cariboo; May 20th, 2013 at 04:11 AM. Reason: fixed quote

  2. #21952
    Join Date
    Jan 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Inodoro Pereyra View Post
    I don't have ~/.local/bin. At ~/.local/ , my only subdirectory is share.
    So what?
    You think it will bite you if you make it?
    Linux Debian Sid (Minted) x86_64/3.12.10, Conky 2.0_pre, Xorg 7.7/1.15.0, KDE 4.11.5, Lenovo T61, Intel X3100, HITACHI HTS722010K9SA00 100GB, WDC_WD5000BEVT 500GB
    Linux user No.: 483055 | My Conky Pitstop corner | One4All project

  3. #21953
    Join Date
    Dec 2009
    Beans
    263

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by dk75 View Post
    So what?
    You think it will bite you if you make it?
    OOOHHH, Ok.

    Sorry, I assumed it'd be there...

  4. #21954
    Join Date
    Dec 2009
    Beans
    263

    Re: Post your .conkyrc files w/ screenshots

    Ok, it's done.
    Made the file, and gave permission to execute.
    What now? Should I restart?

  5. #21955
    Join Date
    Dec 2009
    Beans
    263

    Re: Post your .conkyrc files w/ screenshots

    Ok, I restarted the computer, and conky started automatically. A little out of whack, but nothing I can't solve. Thanks guys, you're the best.

    Now the weather problem...

  6. #21956
    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 kobayash1 View Post

    Here is my .conf:

    Code:
    $alignr Memory
    ${top_mem name 1} $alignr ${top mem 1}%
    ${top_mem name 2} $alignr ${top mem 2}%
    ${top_mem name 3} $alignr ${top mem 3}%
    ${top_mem name 4} $alignr ${top mem 4}%
    ${top_mem name 5} $alignr ${top mem 5}%
    --Lastly, sometimes the ${top_mem} order is out of whack. Is this a bug or am I doing it wrong?
    Have you tried replacing ${top mem #} with ${top_mem mem #}, that might help.
    Who's Awesome? You're Awesome.

  7. #21957
    Join Date
    Apr 2013
    Beans
    1

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Petro Dawg View Post
    or if your more comfortable just using grep...

    Code:
    ${execp sensors coretemp-isa-0000 | grep 'Core 0' | cut -c16-17}
    Yes, I would do exactly something like that. But for 4 cores and 4 fans, executing that command 8 times per cycle reliably increased my usual idle CPU load from 0-2% to 2-5%. It's not a significant difference, but if I can have the best of both worlds, why not. Thankfully dk75's suggestion to write to the /tmp folder ensured I only have to do ${exec sensors} once, and not have my HDD in constant use. Thanks a lot!

    Quote Originally Posted by Petro Dawg View Post
    Have you tried replacing ${top mem #} with ${top_mem mem #}, that might help.
    Well, that fixes that. Thx!

  8. #21958
    Join Date
    Jan 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by kobayash1 View Post
    Yes, I would do exactly something like that. But for 4 cores and 4 fans, executing that command 8 times per cycle reliably increased my usual idle CPU load from 0-2% to 2-5%. It's not a significant difference, but if I can have the best of both worlds, why not. Thankfully dk75's suggestion to write to the /tmp folder ensured I only have to do ${exec sensors} once, and not have my HDD in constant use. Thanks a lot!!
    Another suggestion:
    Code:
    ${execp sensors coretemp-isa-0000 | mawk 'BEGIN{ i=0 } /Core/ { gsub(/\+/, "", $3); gsub(/\../, "", $3); cpu[i]=$3; i++ } END{ for (x in cpu) print "${voffset", x*8"}Core", x, "=", cpu[x]; }' }
    Linux Debian Sid (Minted) x86_64/3.12.10, Conky 2.0_pre, Xorg 7.7/1.15.0, KDE 4.11.5, Lenovo T61, Intel X3100, HITACHI HTS722010K9SA00 100GB, WDC_WD5000BEVT 500GB
    Linux user No.: 483055 | My Conky Pitstop corner | One4All project

  9. #21959
    Join Date
    Jan 2006
    Location
    Sunny Southend-on-Sea
    Beans
    8,430
    Distro
    Kubuntu 20.04 Focal Fossa

    Re: Post your .conkyrc files w/ screenshots

    Not ever so portable; there's references to particular sensors and images that people wouldn't necessarily have. And there's a whole bunch of alignment stuff that would probably change. Fits in with my desktop nicely, though.

    Code:
    # UBUNTU-CONKY
    # A comprehensive conky script, configured for use on
    # Ubuntu / Debian Gnome, without the need for any external scripts.
    #
    # Based on conky-jc and the default .conkyrc.
    # INCLUDES:
    # - tail of /var/log/messages
    # - netstat shows number of connections from your computer and application/PID making it. Kill spyware!
    #
    # -- Pengo
    # 
    
    # Run Conky in the background
    background yes
     
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    own_window_transparent yes
    own_window_colour F7F6F5
    # own_window_type override
    own_window_type normal
    own_window_argb_visual yes
    own_window_argb_value 255
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
     
    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes
     
    # fiddle with window
    # use_spacer right
    
    # Use Xft?
    use_xft yes
    xftfont Bitstream Vera Sans:size=9
    #xftfont Futura Md BT Medium:size=9
    xftalpha 1.0
    text_buffer_size 2048
     
    # Update interval in seconds
    update_interval 1
     
    # Minimum size of text area
    # minimum_size 200 5
     
    # Draw shades?
    draw_shades no
     
    # Text stuff
    draw_outline no # amplifies text if yes
    draw_borders no
    uppercase no # set to yes if you want all text to be in uppercase
     
    # Stippled borders?
    # stippled_borders 3
     
    # border margins
    border_inner_margin 0
    border_outer_margin 0
    
    # border width
    border_width 2
     
    # Default colors and also border colors
    #default_color 333333
    default_color F7F6F5
    
    # 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
    gap_x 12
    gap_y 26
    
    top_cpu_separate yes
    top_name_width 30
    
    cpu_avg_samples 2
    net_avg_samples 2
    
    # stuff after 'TEXT' will be formatted on screen
     
    TEXT
    $color
    ${color #DD4814}SYSTEM ${hr 2}$color
    ${voffset 2}${exec cat /etc/issue.net}$alignr$sysname $kernel
    ${exec cat /etc/os-release | cut -d, -f2 -s | awk '{print substr($0,2,length($0)-2)}'}$alignr$machine
    ${offset 30}${voffset 8}$nodename${alignr}Uptime: $uptime_short
    ${image /usr/share/icons/oxygen/22x22/devices/computer.png -p 0,68}
    ${voffset -4}${color #DD4814}CPU ${hr 2}$color
    ${voffset 2}$alignr${pre_exec cat /proc/cpuinfo | grep 'model name' | sed -e 's/.*: //' | uniq}
    ${image /usr/share/icons/oxygen/22x22/devices/cpu.png -p 0,110}
    #Load:$alignr$loadavg  
    ${voffset -8}${loadgraph 10,301 333333 DD4814 4}
    ${voffset 3}${freq_g 1}GHz:
    $alignr${voffset -15}${offset -207}${cpu cpu1}%
    ${voffset -15}${offset 153}${freq_g 3}GHz:
    $alignr${voffset -15}${offset -55}${cpu cpu3}%
    ${voffset -14}${offset 98}${cpubar cpu1 6,50}$alignr${cpubar cpu3 6,50}
    ${freq_g 2}GHz:
    $alignr${voffset -15}${offset -207}${cpu cpu2}%
    ${voffset -15}${offset 153}${freq_g 4}GHz:
    $alignr${voffset -15}${offset -55}${cpu cpu4}%
    ${voffset -14}${offset 98}${cpubar cpu2 6,50}$alignr${cpubar cpu4 6,50}
    
    ${voffset -10}${color #DD4814}PROCESSES ${hr 2}$color
    ${voffset 4}
    $alignr${voffset -14}${offset -116}PID
    $alignr${voffset -14}${offset -58}%CPU
    $alignr${voffset -14}${offset -3}%MEM
    ${top name 1}
    ${font Inconsolata Medium:size=9}$alignr${voffset -14}${offset -116}${top pid 1}
    $alignr${voffset -14}${offset -60}${top cpu 1}
    $alignr${voffset -14}${offset -4}${top mem 1}$font
    ${top name 2}
    ${font Inconsolata Medium:size=9}$alignr${voffset -14}${offset -116}${top pid 2}
    $alignr${voffset -14}${offset -60}${top cpu 2}
    $alignr${voffset -14}${offset -4}${top mem 2}$font
    ${top name 3}
    ${font Inconsolata Medium:size=9}$alignr${voffset -14}${offset -116}${top pid 3}
    $alignr${voffset -14}${offset -60}${top cpu 3}
    $alignr${voffset -14}${offset -4}${top mem 3}$font
    
    ${voffset -10}${color #DD4814}MEMORY / DISK ${hr 2}$color
    ${image /usr/share/icons/oxygen/22x22/devices/gnome-dev-memory.png -p 0,302}
    ${image /usr/share/icons/oxygen/22x22/devices/drive-harddisk.png -p 278,302}
    ${voffset -4}RAM:${offset 30}$memperc% $alignr${offset -58}/: ${fs_used_perc /}%
    ${voffset -14}${offset 98}${membar 6,50}$alignr${fs_bar 6,50 /}
    Swap:${offset 23}$swapperc% $alignr${offset -58}/home: ${fs_used_perc /home}%
    ${voffset -14}${offset 98}${swapbar 6,50}$alignr${fs_bar 6,50 /home}
    
    ${voffset -10}${color #DD4814}TEMPERATURES ${hr 2}$color
    ${voffset 4}Processor: ${offset 33}${hwmon 0 temp 1}°C ${alignr}${hwmon 1 fan 2} RPM
    ${alignr}${voffset -15}${offset -85}CPU Fan:
    Graphics card: ${offset 6}${nvidia temp}°C${alignr}${hwmon 1 fan 1} RPM
    ${alignr}${voffset -15}${offset -85}Case Fan:
    Hard drive: ${offset 27}${hddtemp /dev/sdb}°C${alignr}${tail /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor 1}
    ${alignr}${voffset -15}${offset -85}Governor:
    
    ${voffset -8}${color #DD4814}NETWORK  ${hr 2}$color
    ${offset 90}${voffset 2}local address:$alignr${addr eth1}
    ${offset 89}${voffset 2}public address:$alignr${pre_exec wget -q -O /dev/stdout http://checkip.dyndns.org/ | cut -d : -f 2- | cut -d \< -f -1}
    #${offset 82}${voffset 2}public address: $alignr${pre_exec wget -O - http://www.whatismyip.org}
    ${image /usr/share/icons/oxygen/22x22/devices/network-wired.png -p 0,458}
    ${voffset -10}Down: ${downspeed eth1}/s${alignr}Up: ${upspeed eth1}/s
    ${downspeedgraph eth1 10,130 333333 FF0000 1024}${alignr}${upspeedgraph eth1 10,130 333333 00FF00 256}$color
    Total: ${totaldown eth1}${alignr}Total: ${totalup eth1}
    Attached Images Attached Images
    Last edited by CatKiller; May 20th, 2013 at 12:22 PM.
    None but ourselves can free our minds

  10. #21960
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Inodoro Pereyra View Post
    Now, I THINK I KNOW WHAT THE PROBLEM IS. Sector 11 lists these scripts:

    • ~/AccuW_2/accuw.conky
    • ~/AccuW_2/BsAs
    • ~/AccuW_2/BsAs/acc_int_images
    • ~/AccuW_2/BsAs/Forecast_Images
    • ~/AccuW_2/London
    • ~/AccuW_2/London/acc_int_images
    • ~/AccuW_2/London/Forecast_Images

    ...and I don't have them, don't know where to find them, and don't know how to write them.

    That's all I can think of, right now. Let me know if you need anything else.
    Thanks for the help.
    They can be found here, however you need to download Teo's scripts from the first post in that thread and quite possibly redo some of my stuff as things have changed over time. Check out the following two post as well as the one given.

    If you need help, I'm here and will help in any way possible, Teo's script adapt to various cities quite nicely.

Page 2196 of 2348 FirstFirst ... 1196169620962146218621942195219621972198220622462296 ... 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
  •