Page 563 of 2348 FirstFirst ... 6346351355356156256356456557361366310631563 ... LastLast
Results 5,621 to 5,630 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #5621
    Join Date
    Jul 2007
    Location
    The U. S. of A.
    Beans
    163
    Distro
    Kubuntu Development Release

    Thumbs down Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by wynneth View Post
    It's up to you, but I would censor that IP address in your screenshot, unless you're using something like Comcast and have a 77 internal IP from the modem separate from the external IP.
    or are like me and get a different IP every time you DIAL IN.
    || Kubuntu x86_64 (15.10 Dev.) || KDE 4.9.00 ||
    || Dell Inspiron 570 || 8GB PC3-10600 DDR3 RAM || AMD Phenom II X4 820 @ 2.8Ghz ||
    || Logitech M570 Trackball || Logitech G15 Gaming Keyboard ||
    Conky: ... no such configuration: 'normal'

  2. #5622
    Join Date
    Dec 2008
    Beans
    56
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Crinos512 View Post
    or are like me and get a different IP every time you DIAL IN.
    OMG you poor soul. I just learned that an acquaintence is doing the same thing, but there's was out of ignorance, not necessity. Could we set up a charity for you?

  3. #5623
    Join Date
    Dec 2008
    Beans
    56
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Post your .conkyrc files w/ screenshots

    Alright I've got a new screenshot since I've made some changes thanks very much to the wonderful people here in this thread. I managed to get my cpu and mem tops in a 4 column set thanks to the goto variable, and since I learned to increase the text_buffer_size and make a few other changes my automagically updating mounts script now functions fully.

    conkyrc
    Code:
    #!/bin/bash
    #WYNS-CONKY
    # My variation of the Conky config, based loosely on UBUNTU-CONKY by Seldon77
    
    own_window yes
    own_window_transparent yes
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    double_buffer yes
    text_buffer_size 512
    use_spacer left
    use_xft yes
    update_interval 1.0
    draw_shades no
    xftfont Bitstream Vera Sans:style=bold:size=6
    xftalpha .8
    draw_outline no # amplifies text if yes
    draw_borders no
    uppercase no 
    default_color grey
    alignment tr
    minimum_size 300 600
    gap_x 10
    gap_y 40
    
    # stuff after 'TEXT' will be formatted on screen
    
    TEXT
    ${color white}$stippled_hr
    ${color green}${exec whoami}$color on $nodename
    $sysname $kernel ($machine) up $uptime 
    Battery: ${battery_percent}% $battery_bar
    ${color white}$stippled_hr
    ${execi 1000 cat /proc/cpuinfo | grep 'model name' | sed -e 's/model name.*: //' | sed -n "1p"}
    $stippled_hr
    ${color white}${freq}$color MHz ${goto 80}GPU: ${color white}${execi 60 nvidia-settings -q [gpu:0]/GPUCoreTemp | grep '):' | awk '{print $4}' | sed 's/\.//'}C$color
    CPU1: ${color white}${cpu cpu1}%$color ${goto 80}CPU1: ${color white}${execpi 30 sensors | grep Core0 | paste -s | cut -c15-16}C$color 
    CPU2: ${color white}${cpu cpu2}%$color ${goto 80}CPU2: ${color white}${execpi 30 sensors | grep Core1 | paste -s | cut -c15-16}C$color
    ${alignr}${cpugraph 30,300 000000 ffffff}
    
    $processes processes (${color white}$running_processes running$color) ${goto 170}Load:  $alignr ${loadavg}
    
    NAME${goto 100}CPU%${goto 170}NAME${alignr}MEM%
    ${color white}${top name 1} ${goto 94}${top cpu 1}% ${goto 170}${top_mem name 1} ${alignr}${top_mem mem 1}%$color
    ${top name 2} ${goto 94}${top cpu 2}% ${goto 170}${top_mem name 2} ${alignr}${top_mem mem 2}%
    ${top name 3} ${goto 94}${top cpu 3}% ${goto 170}${top_mem name 3} ${alignr}${top_mem mem 3}%
    ${top name 4} ${goto 94}${top cpu 4}% ${goto 170}${top_mem name 4} ${alignr}${top_mem mem 4}%
    ${color white}$stippled_hr
    MEMORY / DISK
    $stippled_hr$color
    RAM: ${goto 40}$memperc%  ${goto 80}$mem ${goto 140}of ${alignr}$memmax ${membar 3,80}
    Swap: ${goto 40}$swapperc%  ${goto 80}$swap ${goto 140}of ${alignr}$swapmax ${swapbar 3,80}
    ${color white}$stippled_hr
    MOUNTED DEVICES${goto 76}
    $stippled_hr
    Location${goto 160}Used${alignr}Total$color
    ${execpi 30 sh ~/.conkymounts}
    ${color white}$stippled_hr
    NETWORK
    $stippled_hr$color
    ${if_existing /proc/net/route eth1}$color
    ${color white}${alignc}Wireless$color
    Attached to:${alignr}${wireless_essid eth1} Signal: ${wireless_link_qual eth1}% ${alignr}${wireless_link_bar 8,60 eth1}
    Up: ${goto 40}${upspeed eth1} kb/s ${goto 90}Day:${goto 120}${totalup eth1}${goto 200}Month: ${alignr}${execi 300 vnstat -m | grep "`date +"%b '%y"`" | awk '{print $6 $7}'}
    Down: ${goto 40}${downspeed eth1} kb/s ${goto 90}Day:${goto 120}${totaldown eth1}${goto 200}Month: ${alignr}${execi 300 vnstat -m | grep "`date +"%b '%y"`" | awk '{print $3 $4}'}
    Local IP: ${alignr}${addr eth1}
    External IP$alignr${execi 3600 wget -O - http://whatismyip.org/ | tail}
    $else
    ${if_existing /proc/net/route eth0}
    ${color white}${alignc}Wired$color
    Up: ${alignr 100}${upspeed eth0} kb/s ${alignr}${totalup eth0}
    Down: ${alignr 100}${downspeed eth0} kb/s ${alignr}${totaldown eth0}
    Local IP: ${alignr}${addr eth0}
    External IP$alignr${execi 3600 wget -O - http://whatismyip.org/ | tail}
    $endif
    ${color white}Connections:$color
    In: ${color white}${tcp_portmon 1 32767 count}$color Out: ${color white}${tcp_portmon 32768 61000 count}$color Total: ${color white}${tcp_portmon 1 65535 count}$color
      Count Port/Process
    ${execi 60 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d: -f1 | sort | uniq -c | sort -nr}
    ${color white}$stippled_hr
    ${execi 120 fortune -as | fold -w60 -s}
    $stippled_hr$color
    conkymounts script
    Code:
    #! /bin/sh
    #***ATTENTION***
    #THIS PACKAGE SHOULD CONTAIN 4 FILES: .conkymounts .conkmtab README LICENSE
    #IF IT DOES NOT, PLEASE DELETE IT AND SEARCH FOR A FULL PACKAGE.
    #PLEASE DO NOT REDISTRIBUTE ANYTHING LESS THAN THE FULL PACKAG
    
    # This is a script to get mounted devices and output them to conky for displaying free space information. It relies on the file .conkmtab which consists of exclusion words one per line, which sould have been packaged with this file. Please pardon any non-streamlined code, this is my first shell script. Please see the README for details. This work is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/us/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. Originally By Wyn D'Willows 
    
    #First we get currently mounted volumes, strip system mounts such as proc from it, and cut unnecessary information from it and save it to the .conkymtabs file
    `grep -v -F -f .conkmtab /etc/mtab | cut -d" " -f1,2 > ~/.conkymtabs`
    #Now we check to make sure the file .conkymtabs actually exists, then set the conklines variable to the number of lines in the file
    if [ -s ".conkymtabs" ]; then
    	conklines=`wc -l .conkymtabs | cut -d" " -f1`
    #Here we check to make sure the conklines variable is set and then pass it to the count variable, otherwise default count to 1 - this is just for debugging
    	if [ -n "$conklines" ]; then
    		count=$conklines
    	else count=1
    	fi
    #If for some reason the opening lines did not execute properly, we want to let the user know what happened
    else echo '${alignc}-Mount Points Not Loaded-'
    fi
    #Setting up the loop to run until no lines are left of the .conkymtabs file
    while [ $count -gt 0 ]
    #Here we set themount variable to the actual mount point for the line of .conkymtabs we are processing, and on the next line we pass the mount point to the conky code to be parsed and displayed, then we subtract one from the count and start over at while
    do
    themount=`sed -n "$count p" .conkymtabs | cut -d" " -f2`
    echo $themount '${goto 160}${fs_used '$themount'} ${alignr}${fs_size '$themount'}'
    count=`expr $count - 1`
    done
    Attached Images Attached Images
    Last edited by wynneth; February 10th, 2009 at 12:51 AM. Reason: Decided to throw in the basic mounts script I wrote

  4. #5624
    Join Date
    Sep 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Crinos512 View Post
    or are like me and get a different IP every time you DIAL IN.
    Dial Up? You're still using a phone modem?

  5. #5625
    Join Date
    Sep 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by wynneth View Post
    Alright I've got a new screenshot since I've made some changes thanks very much to the wonderful people here in this thread.
    NICE! I love a dark background and your choice of "colours" fits well.

  6. #5626
    Join Date
    Jul 2007
    Location
    The U. S. of A.
    Beans
    163
    Distro
    Kubuntu Development Release

    Thumbs down Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Bruce M. View Post
    Dial Up? You're still using a phone modem?
    Yup, allow me to direct you to a pet project of mine...the Dial-up Modem compatibility list

    I'm stuck about 2 miles from where the DSL and Cable stop... not feeling wealthy enough to go for Satellite.



    ah well, one of these days.
    || Kubuntu x86_64 (15.10 Dev.) || KDE 4.9.00 ||
    || Dell Inspiron 570 || 8GB PC3-10600 DDR3 RAM || AMD Phenom II X4 820 @ 2.8Ghz ||
    || Logitech M570 Trackball || Logitech G15 Gaming Keyboard ||
    Conky: ... no such configuration: 'normal'

  7. #5627
    Join Date
    Dec 2008
    Beans
    56
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Crinos512 View Post
    Yup, allow me to direct you to a pet project of mine...the Dial-up Modem compatibility list

    I'm stuck about 2 miles from where the DSL and Cable stop... not feeling wealthy enough to go for Satellite.



    ah well, one of these days.
    No start up wireless services near you? Xanadoo, Clearwire, or hahahaa Google's tISP

  8. #5628
    Join Date
    Sep 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Crinos512 View Post
    A.> Looks like you have found feh, that's great! You can be rid of the ~/set_wallpaper script by using ${texeci 1000 feh --bg-scale "`grep 'wallpaper=' ~/.kde/share/config/plasmarc | tail --bytes=+11`"} in place of ${execi 10000 ~/.set_wallpaper} in your conkyrc. I use texeci because it launches feh as a seperate process (thread execute) allowing conky to continue without waiting for feh to finish. This should also update when you change your plasma wallpaper. (Be patient, KDE waits for some reason before it writes to the config file.)
    I'm curious, is there a fundamental difference between feh and other programs like nitrogen when it comes to setting wallpaper? I'm asking because feh is the recommended program to use to get a transparent conky in e17. My system won't do it the prescribed way, but it works if I use feh in the conky script.

    Debian Lenny, e17 and a conky script in progress (needs serious work on the colors). Conky is from the Conky Royalty script at deviantart.com. The panel on the left is set to autohide.
    Attached Images Attached Images
    The mark of an honest man ... is that he means what he says and knows what he means.
    A.R.

  9. #5629
    Join Date
    Jul 2007
    Location
    The U. S. of A.
    Beans
    163
    Distro
    Kubuntu Development Release

    Thumbs down Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by ddnev45 View Post
    I'm curious, is there a fundamental difference between feh and other programs like nitrogen when it comes to setting wallpaper? I'm asking because feh is the recommended program to use to get a transparent conky in e17. My system won't do it the prescribed way, but it works if I use feh in the conky script.

    Debian Lenny, e17 and a conky script in progress (needs serious work on the colors). Conky is from the Conky Royalty script at deviantart.com. The panel on the left is set to autohide.
    Having never used nitrogen I'm not sure what differences there may be with feh.

    My way of thinking about the way feh works in the conky on KDE4 is kind of layered.

    bottom layer: the X desktop layer
    middle layer: the Plasma layer (is the whole screen, panels widgets and all.)
    top layer: the Conky layer.

    Conky's transparency is really more like a window which uses the X desktop wallpaper as a background. You can't actually see things through is like icons.

    The big deal is that the Plasma layer wallpaper is not the same as the X desktop layer's wallpaper making it all look wrong. the command you quoted above pulls the wallpaper info from the Plasma config file and sets the X desktop wallpaper to the match the Plasma layer so that when conky uses the X desktop layer wallpaper the illusion of transparency is maintained.

    (NOTE: this is all based off of assumptions and observations and may technically be wholly or partially incorrect... but that's how I think of it.)
    || Kubuntu x86_64 (15.10 Dev.) || KDE 4.9.00 ||
    || Dell Inspiron 570 || 8GB PC3-10600 DDR3 RAM || AMD Phenom II X4 820 @ 2.8Ghz ||
    || Logitech M570 Trackball || Logitech G15 Gaming Keyboard ||
    Conky: ... no such configuration: 'normal'

  10. #5630
    Join Date
    Mar 2007
    Location
    /US/EC/DC
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by ddnev45 View Post
    I'm curious, is there a fundamental difference between feh and other programs like nitrogen when it comes to setting wallpaper?
    Not really. The only main difference between feh and Nitrogen is that Nitrogen offers a GUI.
    Warranty? Who needs a warranty?
    If it ain't broke, take it apart and fix it.

Page 563 of 2348 FirstFirst ... 6346351355356156256356456557361366310631563 ... 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
  •