Page 715 of 2348 FirstFirst ... 21561566570571371471571671772576581512151715 ... LastLast
Results 7,141 to 7,150 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #7141
    Join Date
    Sep 2008
    Location
    luxembourg
    Beans
    47
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Post your .conkyrc files w/ screenshots

    Hi Crinos512,
    I have the template and background working I think.
    I have the weather working.
    I have changed the device permissions in sbin.
    I still have the bad substitution errors on all remaining scripts.
    I am currently back to #!/bin/sh on these.

    Standing by for any advice...

    The weather looks nice-display and real life!
    Ubuntu 11.04(amd64)
    |Abit FP-IN9 SLI | Intel(R) Core(TM)2 Duo CPU E8200@2.66GHz | GeForce 9800 GT |

  2. #7142
    Join Date
    Jul 2008
    Location
    Connecticut, U.S.
    Beans
    106
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Crinos512 View Post
    dmillerct:
    well, it gave you the correct response at the end...

    try changing the script to use /bin/bash instead and run the command again.
    Yup that took care of it. funny, I believe we were just talking about that.

  3. #7143
    Join Date
    Nov 2008
    Location
    Nashville, Tn
    Beans
    137
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Post your .conkyrc files w/ screenshots

    just curious, where can i get the lcdmono font? ive searched for a bit now but i cant find it anywhere...

  4. #7144
    Join Date
    Jul 2008
    Location
    Connecticut, U.S.
    Beans
    106
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Dawei87 View Post
    just curious, where can i get the lcdmono font? ive searched for a bit now but i cant find it anywhere...
    Here ya go:
    http://www.spinwardstars.com/scrfonts/lcdmono.html

  5. #7145
    Join Date
    May 2009
    Beans
    2

    Re: Post your .conkyrc files w/ screenshots

    Here is my lovely conky configuration, I figured I'd share it.

    It's actually 2 conky processes running different .conkyrc files. (This is an easy way to create columns). I created a very basic shell script that starts them both.

    Code:
    #!/bin/sh
    #sleep 20
    conky -d -c /path/to/file/.conkyrc1
    conky -d -c /path/to/file/.conkyrc2
    exit
    You can un-comment the sleep function if you want to use the script at startup. I hear this gives time for the desktop to load, but it was not my idea.

    To use this just put the code in an empty file. Let's call it... 'conkystart'.

    Code:
    sudo chmod +x /path/to/conkystart
    Chmod the file to be excutable.

    Code:
    sudo mv /path/to/conkystart /usr/bin/conkystart
    Then move the file to your /usr/bin/ directory.

    Now all you have to do to start conky is run 'conkystart' where you would normally run 'conky' (eg. in the terminal).

    Other notes:

    -The .conkyrc1 file lists 3 hard disks and only displays them if they are mounted. One of them (KINGSTON) is a USB drive. These settings should be customized to fit your own needs. Note, however, that there is no line break between the disks and the next if_existing arguement. To explain better: "Everything under the TEXT header in your .conkyrc file will get displayed. That means every line break or carriage return, too. If you were to put the $if_existing flag at the beginning of a new line, that new line would still be displayed, but would be a blank line when your device isn’t mounted, because the conditions of the $if_existing variable would not be met. To think of it another way: You’re putting the carriage return inside the $if_existing statement, so that the line break only happens when the conditions of the statement are met." Credit.

    -The .conkyrc2 file requires kaivalagi's Google calendar python script and SSL email python scipt. Don't forget to replace YOURUSERNAME and YOURPASSWORD with your real information!

    -The .conkyrc2 file checks to see if several programs are running (in the process information pane). You may not have these programs installed, which is fine.

    .conkyrc1:
    Code:
    background no
    cpu_avg_samples 2
    net_avg_samples 2
    out_to_console no
    font -monotype-arial-medium-r-*-*-10-*-*-*-*-*-*-*
    use_xft no
    mail_spool $MAIL
    update_interval 2
    own_window yes
    own_window_transparent yes
    own_window_hints undecorated,below,skip_taskbar
    own_window_type override
    double_buffer yes
    minimum_size 260 5
    maximum_width 260
    draw_shades no
    draw_outline no
    draw_borders no
    stippled_borders no
    border_margin 2
    border_width 1
    default_color white
    default_shade_color white
    default_outline_color white
    gap_x 10
    gap_y 10
    alignment top_right
    use_spacer none
    no_buffers yes
    uppercase no
    
    TEXT
    ${color #75481D}Local ${voffset -2}${hr 3}
    
    ${color #75481D}$sysname $kernel $machine - $nodename
    ${color #75481D}Uptime:${color #907860} $uptime ${color #75481D} Load:${color #907860} $loadavg
    
    ${color #75481D}${execi 1000 cat /proc/cpuinfo | grep 'model name' | sed -e 's/model name.*: //'} ${color #907860}${freq_dyn}Mhz
    ${color #75481D}Usage:${color #75481D} ${color #907860}${cpu}% ${color #75481D}${cpubar}
    ${color #75481D}${voffset -3}${cpugraph}
    ${color #75481D}${voffset -3}Proces:${color #907860} $processes  ${color #75481D}Run:${color #907860} $running_processes ${color #75481D}$alignr Battery: ${color #907860}${battery_percent BAT0}%
    
    ${color #75481D}RAM:${color #907860} $mem/$memmax - $memperc% ${color #75481D}$alignr${membar 5,90}
    ${color #75481D}SWP:${color #907860} $swap/$swapmax - $swapperc%     ${color #75481D}$alignr${swapbar 5,90}
    
    ${color #75481D}CPU Usage${goto 100}PID     CPU%   MEM%
    ${color #907860} ${top name 1 | cut -c 5-5}${goto 95}${top pid 1}    ${top cpu 1}    ${top mem 1}
    ${color #75481D} ${top name 2 | cut -c 15}${goto 95}${top pid 2}    ${top cpu 2}    ${top mem 2}
    ${color #75481D} ${top name 3 | cut -c 15}${goto 95}${top pid 3}    ${top cpu 3}    ${top mem 3}
    
    ${color #75481D}Mem Usage
    ${color #907860} ${top_mem name 1 | cut -c 15}${goto 95}${top_mem pid 1}    ${top_mem cpu 1}    ${top_mem mem 1}
    ${color #75481D} ${top_mem name 2 | cut -c 15}${goto 95}${top_mem pid 2}    ${top_mem cpu 2}    ${top_mem mem 2}
    ${color #75481D} ${top_mem name 3 | cut -c 15}${goto 95}${top_mem pid 3}    ${top_mem cpu 3}    ${top_mem mem 3}
    
    ${color #75481D}Hard Disks:
    ${color #75481D} Root  ${color #907860}${fs_used /}/${fs_size /}$alignr${color #75481D}${fs_bar 5,120 /}${if_existing /media/KINGSTON}
    ${color #75481D} Media ${color #907860}${fs_used /media/KINGSTON}/${fs_size /media/KINGSTON}$alignr${color #75481D}${fs_bar 5,120 /media/KINGSTON}$endif${if_existing /media/disk}
    ${color #75481D} Disk ${color #907860}${fs_used /media/disk}/${fs_size /media/disk}$alignr${color #75481D}${fs_bar 5,120 /media/disk}$endif
    
    ${color #75481D}Network ${voffset -2}${hr 3}
    
    ${color #75481D}Down:${color #907860} ${downspeed eth1} k/s $alignr${color #75481D} Up:${color #907860} ${upspeed eth1} k/s
    ${color #75481D}${voffset -3}${downspeedgraph eth1 27,120 180} $alignr${color #75481D}${upspeedgraph eth1 27,120 25}
    ${color #907860}${voffset -3}${totaldown eth1}           $alignr${color #907860}${totalup eth1}
    
    ${color #75481D}ESSID: ${color #907860}${execi 30 iwconfig eth1 | grep "ESSID" | cut -c 31-50}${color #75481D}Link: ${color #907860}${execi 8 iwconfig eth1 | grep "Link" | cut -c 24-30}
    
    ${color #75481D}Port(s)$alignr #Connections
    ${color #75481D}Inbound: ${color #907860}${tcp_portmon 1 32767 count}  ${color #75481D}Outbound: ${color #907860}${tcp_portmon 32768 61000 count}$alignr ${color #75481D}Total: ${color #907860}${tcp_portmon 1 65535 count}
    .conkyrc2:
    Code:
    background no
    cpu_avg_samples 2
    net_avg_samples 2
    out_to_console no
    font -monotype-arial-medium-r-*-*-10-*-*-*-*-*-*-*
    use_xft no
    mail_spool $MAIL
    update_interval 2
    own_window yes
    own_window_transparent yes
    own_window_hints undecorated,below,skip_taskbar
    own_window_type override
    double_buffer yes
    minimum_size 260 5
    maximum_width 260
    draw_shades no
    draw_outline no
    draw_borders no
    stippled_borders no
    border_margin 2
    border_width 1
    default_color white
    default_shade_color white
    default_outline_color white
    alignment top_right
    gap_x 280
    gap_y 10
    use_spacer none
    no_buffers yes
    uppercase no
    
    TEXT
    ${color #75481D}Process Information ${voffset -2}${hr 3}
    
    $alignc${color #75481D}Program Name:
    ${color #75481D}Rhythmbox       ${color #907860}${if_running rhythmbox}XXX$endif $alignr${color #907860}${if_running transmission}XXX$endif    ${color #75481D}Transmission
    ${color #75481D}Blockcontrol    ${color #907860}${if_running moblock}XXX$endif $alignr${color #907860}${if_running mediatomb}XXX$endif       ${color #75481D}Mediatomb
    
    ${color #75481D}Internet Feeds ${voffset -2}${hr 3}
    
    ${color #75481D}Top Gizmodo Stories:
    ${color #907860}1.${rss http://gizmodo.com/tag/top/index.xml 30 item_title 1}
    ${color #907860}2.${color #75481D}${rss http://gizmodo.com/tag/top/index.xml 30 item_title 2}
    ${color #907860}3.${color #75481D}${rss http://gizmodo.com/tag/top/index.xml 30 item_title 3}
    ${color #907860}4.${color #75481D}${rss http://gizmodo.com/tag/top/index.xml 30 item_title 4}
    ${color #907860}5.${color #75481D}${rss http://gizmodo.com/tag/top/index.xml 30 item_title 5}
    
    ${color #75481D}Top CNN Headlines:
    ${color #907860}1. ${rss http://rss.cnn.com/rss/edition.rss 30 item_title 1}
    ${color #907860}2. ${color #75481D}${rss http://rss.cnn.com/rss/edition.rss 30 item_title 2}
    ${color #907860}3. ${color #75481D}${rss http://rss.cnn.com/rss/edition.rss 30 item_title 3}
    ${color #907860}4. ${color #75481D}${rss http://rss.cnn.com/rss/edition.rss 30 item_title 4}
    ${color #907860}5. ${color #75481D}${rss http://rss.cnn.com/rss/edition.rss 30 item_title 5}
    
    ${color #75481D}Personal Reminders ${voffset -2}${hr 3}
    
    ${color #75481D}Gmail: ${color #907860}${execi 1800 conkyEmail --servertype=IMAP --ssl --servername=imap.gmail.com --username=YOURUSERNAME --password=YOURPASSWORD --mailinfo=5}
    
    ${color #75481D}Upcomming Events:
    
    ${color #75481D}${execi 1800 conkyGoogleCalendar --username=YOURUSERNAME --password=YOURPASSWORD --daysahead=30 --limit=5 --nowho}
    Attached Images Attached Images

  6. #7146
    Join Date
    Nov 2008
    Location
    Nashville, Tn
    Beans
    137
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Post your .conkyrc files w/ screenshots

    just thought i'd put this up here. eightmillion modified his conkybanshee script so that it can put out more information. you can now use the options -a for artist, -b for album, -t for track, and -n for number. i hope everyone enjoys it as much as i have, and be sure to thank eightmillion for this great script!

    (example use)${exec ~/path/to/script/conkybanshee.py -t}
    Attached Images Attached Images
    Attached Files Attached Files

  7. #7147
    Join Date
    Mar 2009
    Beans
    1

    Re: Post your .conkyrc files w/ screenshots

    Four long hours to get that conky-background just right because I'm not smart enough to figure out the periodicity. The darker bit behind my conky makes reading white letters on top of a white background possible. And my darker bit is smooooooth now... Not stripy at all. What am I talking about ? Look at my .conkyrc and you'll know. (Yes, you with the big brain That is a challenge )

    I borrowed from here for the invisible font and I'll post where I got the original script that I tweaked if I come across it again.

    Code:
    # conky configuration
    background no
    
    use_xft yes
    
    xftfont Bitstream Vera Sans Mono:size=7
    
    xftalpha 0.8
    
    out_to_console no
    
    update_interval 1.0
    
    total_run_times 0
    
    own_window yes
    own_window_type override
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    own_window_transparent yes
    
    double_buffer yes
    
    draw_shades no
    
    draw_outline no
    
    draw_borders no
    
    draw_graph_borders no
    
    stippled_borders 0
    
    border_margin 2
    
    border_width 2
    
    default_color white
    default_shade_color white
    default_outline_color white
    
    minimum_size 5 5
    maximum_width 130
    
    alignment top_right
    
    gap_x 5
    gap_y 5
    
    no_buffers yes
    
    uppercase no
    
    cpu_avg_samples 1
    
    net_avg_samples 1
    
    override_utf8_locale yes
    
    use_spacer right
    
    TEXT
    ${font conkybackgroundfi:size=10}${color black}${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD${voffset -803}
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD${voffset -803}
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD${voffset -803}
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD${voffset -803}
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD${voffset -803}
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD${voffset -803}
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD${voffset -803}
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD
    ${voffset -2}DDDDD${voffset -796}
    ${font :size=8}${color red}$sysname $kernel
    Uptime: $uptime$color
    
    ${font :size=10}${time %a %d %B %g}$font
    ${font :size=15:bold}${alignr}${time %H:%M:%S}$font
    ${voffset -5}${color #888888}${hr 1}$color$voffset
    ${alignr}${voffset -8}${alignr}${cpugraph 12,128 000000 ff0000}$voffset
    
    ${voffset -2}${freq cpu0} MHz${voffset -8}${color red}${font :size=13}${alignr}${cpu cpu0}%${voffset}${voffset}$font$color
    ${voffset -8}${color #888888}${hr 1}${voffset}$color
    ${color blue}${alignr}${membar 11,128}${color yellow}
    ${voffset -11} RAM ${alignr}$mem$voffset
    ${color blue}${alignr}${swapbar 11,128}${color yellow}
    ${voffset -11} Swap ${alignr}$swap$voffset$color
    Cache used: $cached
    ${color #888888}${hr 1}$color
    ${color green}NAME${alignr}CPU%   MEM%$color
    ${voffset 6}${top name 1}  ${voffset}
    ${alignr}${top cpu 1} ${top mem 1}
    ${top name 2}  
    ${alignr}${top cpu 2} ${top mem 2}
    ${top name 3}  
    ${alignr}${top cpu 3} ${top mem 3}
    ${top name 4}  
    ${alignr}${top cpu 4} ${top mem 4}
    ${top name 5}  
    ${alignr}${top cpu 5} ${top mem 5}
    ${color #888888}${hr 1}
    ${color green}/home: $color${color #888888}${font :size=7}$font${alignr}${color red}${diskio /dev/sda8}$color
    ${color #333333}${fs_bar 11,128 /home}$color${offset -117}${font :size=7}${fs_free /home}$font$offset
    ${voffset -12}${diskiograph /dev/sda8 11,118 333333 ff0000}$voffset
    ${color green}biggie: $color${color #888888}${font :size=7}$font${alignr}${color red}${diskio /dev/sda9}$color$voffset
    ${color #333333}${fs_bar 11,128 /media/biggie}$color${offset -117}${font :size=7}${fs_free /media/biggie}$font$offset
    ${voffset -12}${diskiograph /dev/sda9 11,118 333333 ff0000}$voffset
    ${color green}smalls: $color${color #888888}${font :size=7}$font${alignr}${color red}${diskio /dev/sda3}$color
    ${color #333333}${fs_bar 11,128 /media/smalls}$color${offset -117}${font :size=7}${fs_free /media/smalls}$font$offset
    ${voffset -12}${diskiograph /dev/sda3 11,118 333333 ff0000}$voffset
    ${color #888888}${hr 1}$color
    ${if_existing /proc/net/route wlan0}${addr wlan0}
    ${font :size=8}wlan0${alignr}${color green}${downspeedf wlan0} ${color red}${upspeedf wlan0}$font
    ${color green}${alignr}${downspeedgraph wlan0 15,128}
    ${voffset -10}${color red}${alignr}${upspeedgraph wlan0 6,128}$color
    ${endif}${if_existing /proc/net/route eth0}${addr eth0}
    ${font :size=8}eth0${alignr}${color green}${downspeedf eth0} ${color red}${upspeedf eth0}$font
    ${color green}${alignr}${downspeedgraph eth0 15,128}
    ${voffset -10}${color red}${alignr}${upspeedgraph eth0 6,128}$color${endif}
    ${voffset -14}${font :size=8}${color yellow}syslog   ${hr 1}${voffset}$color
    ${font :size=7}${execi 2 tail -n1 /var/log/syslog | fold -w20}
    ${font :size=8}${color yellow}kern.log  ${hr 1}$color
    ${font :size=7}${execi 2 tail -n1 /var/log/kern.log | fold -w20}
    ${font :size=8}${color yellow}messages ${hr 1}$color
    ${font :size=7}${execi 2 tail -n1 /var/log/messages | fold -w20}
    Last edited by Df8; May 21st, 2009 at 12:50 AM. Reason: little mistakes in text

  8. #7148
    Join Date
    Nov 2008
    Location
    Nashville, Tn
    Beans
    137
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Post your .conkyrc files w/ screenshots

    is there a setting for conky so it will act as a panel? ie. windows dont cover it up and dont maximize over it?

  9. #7149
    Join Date
    Jul 2008
    Location
    Connecticut, U.S.
    Beans
    106
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Dawei87 View Post
    is there a setting for conky so it will act as a panel? ie. windows dont cover it up and dont maximize over it?
    Pretty sure that "background yes" (no quotes) above TEXT will do you right.

  10. #7150
    Join Date
    Nov 2008
    Location
    Nashville, Tn
    Beans
    137
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Post your .conkyrc files w/ screenshots

    i do have that in my conky, but it doesnt seem to give me the behavior im after, it just acts like a regular conky. would "own_window_class" have anything to do with it?

Page 715 of 2348 FirstFirst ... 21561566570571371471571671772576581512151715 ... 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
  •