Page 33 of 2348 FirstFirst ... 23313233343543831335331033 ... LastLast
Results 321 to 330 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #321
    Join Date
    Feb 2007
    Location
    Brampton, Ontario
    Beans
    883

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by akkros View Post
    are you try with nvclock ?

    ${execi 10 nvclock -T | grep "GPU"}
    ${execi 10 nvclock -T | grep "Board"}
    or simply
    ${execi 10 nvclock -T}
    Yep as I mentioned the other parts work okay, but the last line with the temp is not displaying correctly.
    "For those who believe, no explanation is necessary. For those who do not, none will suffice." - Joseph Dunninger

  2. #322
    Join Date
    Apr 2007
    Location
    Portland, Oregon
    Beans
    348
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your .conkyrc files w/ screenshots

    Try this instead:

    Code:
    ${execi 30 nvclock -T | grep temperature | cut -c21-23}
    I was having the very same problem. Being new to Linux and running into this problem really taught me a lot about that handy little grep command. I changed a few things in the nvclock commands...

    Code:
    ${color slate grey}Video: ${color }${execi 30 nvclock -i | grep 'Card:' | cut -c9-27}
    ${color lightgrey}${tab 20}Temperature: ${color #ddaa00}${execi 30 nvclock -T | grep temperature | cut -c21-23}
    ${color lightgrey}${tab 20}GPU: ${tab 4}${color }${execi 30 nvclock -i | grep 'Architecture:' | cut -c16-22}$alignr${execi 30 nvclock -i | grep 'GPU clock:' | cut -c13-23}
    ${color lightgrey}${tab 20}Mem: ${color }${execi 30 nvclock -i | grep 'Amount:' | cut -c10-15} ${execi 30 nvclock -i | grep 'Type:' | cut -c16-18} $alignr ${execi 30 nvclock -i | grep 'Clock:' | cut -c10-21}

  3. #323
    Join Date
    Jun 2007
    Location
    Boise
    Beans
    54
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Post your .conkyrc files w/ screenshots

    My .conkyrc, based off of Offhand's... slightly edited, extra network interface, and no temperature readings. (i hate reading hte temperature of my laptop anyways)
    PHP Code:
    # set to yes if you want Conky to be forked in the background
    background no

    cpu_avg_samples 2
    net_avg_samples 2

    out_to_console no

    # X font when Xft is disabled, you can pick one with program xfontsel
    #font 7x12
    #font 6x10
    #font 7x13
    #font 8x13
    #font 7x12
    #font *mintsmild.se*
    #font -*-*-*-*-*-*-34-*-*-*-*-*-*-*
    #font -artwiz-snap-normal-r-normal-*-*-100-*-*-p-*-iso8859-1

    # Use Xft?
    use_xft yes

    # Xft font when Xft is enabled
    xftfont Bitstream Vera Sans Mono:size=8

    own_window_transparent no
    #own_window_colour hotpink
    # Text alpha when using Xft
    xftalpha 0.8

    on_bottom yes

    # mail spool
    mail_spool $MAIL

    # Update interval in seconds
    update_interval 1
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    own_window_transparent yes
    own_window_hints undecorated
    ,below,skip_taskbar
    own_window_type override

    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes

    # Minimum size of text area
    minimum_size 260 5
    maximum_width 260

    # Draw shades?
    draw_shades no

    # Draw outlines?
    draw_outline no

    # Draw borders around text
    draw_borders no

    # Stippled borders?
    stippled_borders no

    # border margins
    border_margin 4

    # border width
    border_width 1

    # Default colors and also border colors
    default_color white
    default_shade_color white
    default_outline_color white

    # Text alignment, other possible values are commented
    #alignment top_left
    #minimum_size 10 10
    gap_x 15
    gap_y 70
    alignment top_right
    #alignment bottom_left
    #alignment bottom_right

    # Gap between borders of screen and text

    # Add spaces to keep things from moving about?  This only affects certain objects.
    use_spacer no

    # Subtract file system buffers from used memory?
    no_buffers yes

    # set to yes if you want all text to be in uppercase
    uppercase no

    # none, xmms, bmp, audacious, infopipe (default is none)
    xmms_player bmp

    # boinc (seti) dir
    # seti_dir /opt/seti

    # Possible variables to be used:
    #
    #      Variable         Arguments                  Description                
    #  acpiacadapter                     ACPI ac adapter state.                   
    #  acpifan                           ACPI fan state                           
    #  acpitemp                          ACPI temperature.                        
    #  adt746xcpu                        CPU temperature from therm_adt746x       
    #  adt746xfan                        Fan speed from therm_adt746x             
    #  battery           (num)           Remaining capasity in ACPI or APM        
    #                                    battery. ACPI battery number can be      
    #                                    given as argument (default is BAT0).     
    #  buffers                           Amount of memory buffered                
    #  cached                            Amount of memory cached                  
    #  color             (color)         Change drawing color to color            
    #  cpu                               CPU usage in percents                    
    #  cpubar            (height)        Bar that shows CPU usage, height is      
    #                                    bar's height in pixels                   
    #  downspeed         net             Download speed in kilobytes              
    #  downspeedf        net             Download speed in kilobytes with one     
    #                                    decimal                                  
    #  exec              shell command   Executes a shell command and displays    
    #                                    the output in torsmo. warning: this      
    #                                    takes a lot more resources than other    
    #                                    variables. I'd recommend coding wanted   
    #                                    behaviour in C and posting a patch :-).  
    #  execi             interval, shell Same as exec but with specific interval. 
    #                    command         Interval can't be less than              
    #                                    update_interval in configuration.        
    #  fs_bar            (height), (fs)  Bar that shows how much space is used on 
    #                                    a file system. height is the height in   
    #                                    pixels. fs is any file on that file      
    #                                    system.                                  
    #  fs_free           (fs)            Free space on a file system available    
    #                                    for users.                               
    #  fs_free_perc      (fs)            Free percentage of space on a file       
    #                                    system available for users.              
    #  fs_size           (fs)            File system size                         
    #  fs_used           (fs)            File system used space                   
    #  hr                (height)        Horizontal line, height is the height in 
    #                                    pixels                                   
    #  i2c               (dev), type, n  I2C sensor from sysfs (Linux 2.6). dev   
    #                                    may be omitted if you have only one I2C  
    #                                    device. type is either in (or vol)       
    #                                    meaning voltage, fan meaning fan or temp 
    #                                    meaning temperature. n is number of the  
    #                                    sensor. See /sys/bus/i2c/devices/ on     
    #                                    your local computer.                     
    #  kernel                            Kernel version                           
    #  loadavg           (1), (2), (3)   System load average, 1 is for past 1     
    #                                    minute, 2 for past 5 minutes and 3 for   
    #                                    past 15 minutes.                         
    #  machine                           Machine, i686 for example                
    #  mails                             Mail count in mail spool. You can use    
    #                                    program like fetchmail to get mails from 
    #                                    some server using your favourite         
    #                                    protocol. See also new_mails.            
    #  mem                               Amount of memory in use                  
    #  membar            (height)        Bar that shows amount of memory in use   
    #  memmax                            Total amount of memory                   
    #  memperc                           Percentage of memory in use              
    #  new_mails                         Unread mail count in mail spool.         
    #  nodename                          Hostname                                 
    #  outlinecolor      (color)         Change outline color                     
    #  pre_exec          shell command   Executes a shell command one time before 
    #                                    torsmo displays anything and puts output 
    #                                    as text.                                 
    #  processes                         Total processes (sleeping and running)   
    #  running_processes                 Running processes (not sleeping),        
    #                                    requires Linux 2.6                       
    #  shadecolor        (color)         Change shading color                     
    #  stippled_hr       (space),        Stippled (dashed) horizontal line        
    #                    (height)        
    #  swapbar           (height)        Bar that shows amount of swap in use     
    #  swap                              Amount of swap in use                    
    #  swapmax                           Total amount of swap                     
    #  swapperc                          Percentage of swap in use                
    #  sysname                           System name, Linux for example           
    #  time              (format)        Local time, see man strftime to get more 
    #                                    information about format                 
    #  totaldown         net             Total download, overflows at 4 GB on     
    #                                    Linux with 32-bit arch and there doesn't 
    #                                    seem to be a way to know how many times  
    #                                    it has already done that before torsmo   
    #                                    has started.                             
    #  totalup           net             Total upload, this one too, may overflow 
    #  updates                           Number of updates (for debugging)        
    #  upspeed           net             Upload speed in kilobytes                
    #  upspeedf          net             Upload speed in kilobytes with one       
    #                                    decimal                                  
    #  uptime                            Uptime                                   
    #  uptime_short                      Uptime in a shorter format               
    #
    #  seti_prog                         Seti@home current progress
    #  seti_progbar      (height)        Seti@home current progress bar
    #  seti_credit                       Seti@hoome total user credit


    # variable is given either in format $variable or in ${variable}. Latter
    # allows characters right after the variable and must be used in network
    # stuff because of an argument
    #${font Dungeon:style=Bold:pixelsize=10}I can change the font as well
    #${font Verdana:size=10}as many times as I choose
    #${font Perry:size=10}Including UTF-8,
    # stuff after 'TEXT' will be formatted on screen
    #${font Grunge:size=12}${time %a  %b  %d}${alignr -25}${time %k:%M}

    TEXT
    ${color #0077ff}$sysname $kernel $machine - $nodename 

    ${color #0077ff}Uptime:${color lightgrey} $uptime ${color #0077ff} Load:${color lightgrey} $loadavg

    ${color #0077ff}${execi 1000 cat /proc/cpuinfo | grep 'model name' | sed -e 's/model name.*: //'} ${color lightgrey}${freq_dyn}Mhz
    ${color #0077ff}Usage:${color #0077ff} ${color lightgrey}${cpu}% ${color #0077ff}${cpubar}
    ${color #0077ff}${cpugraph 000000 0077ff}
    ${color #0077ff}Proces:${color lightgrey} $processes  ${color #0077ff}Run:${color lightgrey} $running_processes ${color #0077ff}CPU:${color lightgrey} ${i2c temp 2}C${color lightgrey} ${color #0077ff}MB:${color lightgrey} ${i2c temp 1}C

    ${color #0077ff}RAM:${color lightgrey} $mem/$memmax - $memperc% ${alignr}${color #0077ff}${membar 5,110}
    ${color #0077ff}SWP:${color lightgrey} $swap/$swapmax - $swapperc% ${alignr}${color #0077ff}${swapbar 5,110}



    ${color #0077ff}Hard Disks:
    ${color #0077ff} Root ${color lightgrey}${fs_used /}/${fs_size /}${alignr}${color #0077ff}${fs_bar 5,120 /}
    ${color #0077ff} Home ${color lightgrey}${fs_used /home}/${fs_size /home}${alignr}${color #0077ff}${fs_bar 5,120 /home}


    ${color #0077ff}CPU Usage         PID     CPU%   MEM%
    ${color lightgrey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
    ${
    color #0077ff} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
    ${color #0077ff} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
    ${color #0077ff}Mem Usage
    ${color lightgrey} ${top_mem name 1} ${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem 1}
    ${
    color #0077ff} ${top_mem name 2} ${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem 2}
    ${color #0077ff} ${top_mem name 3} ${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem 3}

    ${color #0077ff}Network: ${color lightgrey}${addr eth1}

    ${color #0077ff}Down:${color lightgrey} ${downspeed eth1} k/s $alignr${color #0077ff} Up:${color lightgrey} ${upspeed eth1} k/s
    ${color #0077ff}${downspeedgraph eth1 27,120 000000 0077ff 180} $alignr${color #0077ff}${upspeedgraph eth1 27,120 000000 0077ff 25}
    ${color lightgrey}${totaldown eth1}           $alignr${color lightgrey}${totalup eth1}

    ${
    color #0077ff}Network: ${color lightgrey}${addr eth1}

    ${color #0077ff}Down:${color lightgrey} ${downspeed ath0} k/s $alignr${color #0077ff} Up:${color lightgrey} ${upspeed eth1} k/s
    ${color #0077ff}${downspeedgraph ath0 27,120 000000 0077ff 180} $alignr${color #0077ff}${upspeedgraph ath0 27,120 000000 0077ff 25}
    ${color lightgrey}${totaldown ath0}           $alignr${color lightgrey}${totalup ath0}

    ${
    color #0077ff}Port(s)${alignr}#Connections
    ${color #0077ff}Inbound: ${color lightgrey}${tcp_portmon 1 32767 count}  ${color #0077ff}Outbound: ${color lightgrey}${tcp_portmon 32768 61000 count}${alignr}${color #0077ff}Total: ${color lightgrey}${tcp_portmon 1 65535 count}

    ${color #0077ff}Inbound Connection ${alignr} Local Service/Port${color lightgrey}
     
    ${tcp_portmon 1 32767 rhost 0} ${alignr} ${tcp_portmon 1 32767 lservice 0}
     ${
    tcp_portmon 1 32767 rhost 1} ${alignr} ${tcp_portmon 1 32767 lservice 1}
     ${
    tcp_portmon 1 32767 rhost 2} ${alignr} ${tcp_portmon 1 32767 lservice 2}
     ${
    tcp_portmon 1 32767 rhost 3} ${alignr} ${tcp_portmon 1 32767 lservice 3}
     ${
    tcp_portmon 1 32767 rhost 4} ${alignr} ${tcp_portmon 1 32767 lservice 4}
     ${
    tcp_portmon 1 32767 rhost 5} ${alignr} ${tcp_portmon 1 32767 lservice 5}
     ${
    tcp_portmon 1 32767 rhost 6} ${alignr} ${tcp_portmon 1 32767 lservice 6
    Attached Images Attached Images
    Just because we were young, it doesn't mean we were wrong.
    1. AMD 4600+ dual-core (2.3ghzx2) 2 Gig DDR2 667 MSI OC 8600GTS 160GB SATA
    2. Intel Centrino 1.6ghz 2gig DDR400 mobility 9600 100gb HD internal ipw2200, cardbus WG511T

  4. #324
    Join Date
    Jun 2007
    Location
    Cairns, Australia
    Beans
    57
    Distro
    Hardy Heron (Ubuntu Development)

    Re: Post your .conkyrc files w/ screenshots

    Well mine has taken me awhile to be happy with but here it is, mind you I'll probably change it again but here it is anyway.

    conkyrc
    Code:
    # set to yes if you want Conky to be forked in the background
    background yes
    
    cpu_avg_samples 2
    net_avg_samples 2
    
    out_to_console no
    
    # Use Xft?
    use_xft yes
    
    # Xft font when Xft is enabled
    xftfont Bitstream Vera Sans Mono:size=10
    
    own_window_transparent yes
    # Text alpha when using Xft
    xftalpha 0.8
    
    on_bottom no
    
    # Update interval in seconds
    update_interval 1
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    own_window_type override
    
    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes
    
    # Minimum size of text area
    minimum_size 320 5
    maximum_width 320
    
    
    # Draw shades?
    draw_shades no
    
    # Draw outlines?
    draw_outline no
    
    # Draw borders around text
    draw_borders no
    
    # Stippled borders?
    stippled_borders 10
    
    # border margins
    border_margin 4
    
    # border width
    border_width 1
    
    # Default colors and also border colors
    default_color white
    default_shade_color white
    default_outline_color white
    
    # Text alignment, other possible values are commented
    #alignment top_left
    #minimum_size 10 10
    gap_x 30
    gap_y 13
    alignment top_right
    #alignment bottom_left
    #alignment bottom_right
    
    # Gap between borders of screen and text
    
    # Add spaces to keep things from moving about?  This only affects certain objects.
    use_spacer no
    
    # Subtract file system buffers from used memory?
    no_buffers yes
    
    # set to yes if you want all text to be in uppercase
    uppercase no
    
    TEXT
    ${color orange}$nodename on $sysname $kernel ${hr 2}
    ${color lightgrey}${time %A %e %B %G, %H:%M:%S}
    ${color orange}SYSTEM ${hr 2}$color
    ${color lightgrey}Uptime:$color $uptime ${color lightgrey}- Load:$color $loadavg
    ${color lightgrey}CPU Usage:${color #5000a0} ${cpu}% ${cpubar}
    ${color black}${cpugraph 000000 5000a0}
    ${color lightgrey}RAM Usage:$color $mem/$memmax - $memperc% $membar
    ${color lightgrey}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar}
    ${color lightgrey}Processes:$color $processes  ${color grey}Running:$color $running_processes
    ${color orange}NETWORKING ${hr 2}$color
     Down:${color #22ccff} ${downspeed eth0} k/s${color lightgrey} ${offset 70}Up:${color #22ccff} ${upspeed eth0} k/s
    ${color black}${downspeedgraph eth0 32,150 ff0000 0000ff} $alignr${color black}${upspeedgraph eth0 32,150 0000ff ff0000}
    ${color lightgrey}File systems:
     / $color${fs_used /}/${fs_size /} ${fs_bar /}
    ${color orange}CALENDAR ${hr 2}$color
    ${execi 60 cal -3 | cut -c23-64}
    ${color orange}WEATHER ${hr 2}$color
    ${color lightgrey}${execi 1800 /home/taz/.weather/weather.sh ASXX0020}
    You can get the weather stuff from Weather.tar.gz on Conky.Sourceforge
    Attached Images Attached Images

  5. #325
    Join Date
    Jun 2007
    Location
    Boise
    Beans
    54
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Post your .conkyrc files w/ screenshots

    update on my background..
    .conkyrc file again

    Code:
    # set to yes if you want Conky to be forked in the background
    background no
    
    cpu_avg_samples 2
    net_avg_samples 2
    
    out_to_console no
    
    # X font when Xft is disabled, you can pick one with program xfontsel
    #font 7x12
    #font 6x10
    #font 7x13
    #font 8x13
    #font 7x12
    #font *mintsmild.se*
    #font -*-*-*-*-*-*-34-*-*-*-*-*-*-*
    #font -artwiz-snap-normal-r-normal-*-*-100-*-*-p-*-iso8859-1
    
    # Use Xft?
    use_xft yes
    
    # Xft font when Xft is enabled
    xftfont Bitstream Vera Sans Mono:size=8
    
    own_window_transparent no
    #own_window_colour hotpink
    # Text alpha when using Xft
    xftalpha 0.8
    
    on_bottom yes
    
    # mail spool
    mail_spool $MAIL
    
    # Update interval in seconds
    update_interval 1
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    own_window_transparent yes
    own_window_hints undecorated,below,skip_taskbar
    own_window_type override
    
    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes
    
    # Minimum size of text area
    minimum_size 260 5
    maximum_width 260
    
    # Draw shades?
    draw_shades no
    
    # Draw outlines?
    draw_outline no
    
    # Draw borders around text
    draw_borders no
    
    # Stippled borders?
    stippled_borders no
    
    # border margins
    border_margin 4
    
    # border width
    border_width 1
    
    # Default colors and also border colors
    default_color white
    default_shade_color white
    default_outline_color white
    
    # Text alignment, other possible values are commented
    #alignment top_left
    #minimum_size 10 10
    gap_x 15
    gap_y 70
    alignment top_right
    #alignment bottom_left
    #alignment bottom_right
    
    # Gap between borders of screen and text
    
    # Add spaces to keep things from moving about?  This only affects certain objects.
    use_spacer no
    
    # Subtract file system buffers from used memory?
    no_buffers yes
    
    # set to yes if you want all text to be in uppercase
    uppercase no
    
    # none, xmms, bmp, audacious, infopipe (default is none)
    xmms_player bmp
    
    # boinc (seti) dir
    # seti_dir /opt/seti
    
    # Possible variables to be used:
    #
    #      Variable         Arguments                  Description                
    #  acpiacadapter                     ACPI ac adapter state.                   
    #  acpifan                           ACPI fan state                           
    #  acpitemp                          ACPI temperature.                        
    #  adt746xcpu                        CPU temperature from therm_adt746x       
    #  adt746xfan                        Fan speed from therm_adt746x             
    #  battery           (num)           Remaining capasity in ACPI or APM        
    #                                    battery. ACPI battery number can be      
    #                                    given as argument (default is BAT0).     
    #  buffers                           Amount of memory buffered                
    #  cached                            Amount of memory cached                  
    #  color             (color)         Change drawing color to color            
    #  cpu                               CPU usage in percents                    
    #  cpubar            (height)        Bar that shows CPU usage, height is      
    #                                    bar's height in pixels                   
    #  downspeed         net             Download speed in kilobytes              
    #  downspeedf        net             Download speed in kilobytes with one     
    #                                    decimal                                  
    #  exec              shell command   Executes a shell command and displays    
    #                                    the output in torsmo. warning: this      
    #                                    takes a lot more resources than other    
    #                                    variables. I'd recommend coding wanted   
    #                                    behaviour in C and posting a patch :-).  
    #  execi             interval, shell Same as exec but with specific interval. 
    #                    command         Interval can't be less than              
    #                                    update_interval in configuration.        
    #  fs_bar            (height), (fs)  Bar that shows how much space is used on 
    #                                    a file system. height is the height in   
    #                                    pixels. fs is any file on that file      
    #                                    system.                                  
    #  fs_free           (fs)            Free space on a file system available    
    #                                    for users.                               
    #  fs_free_perc      (fs)            Free percentage of space on a file       
    #                                    system available for users.              
    #  fs_size           (fs)            File system size                         
    #  fs_used           (fs)            File system used space                   
    #  hr                (height)        Horizontal line, height is the height in 
    #                                    pixels                                   
    #  i2c               (dev), type, n  I2C sensor from sysfs (Linux 2.6). dev   
    #                                    may be omitted if you have only one I2C  
    #                                    device. type is either in (or vol)       
    #                                    meaning voltage, fan meaning fan or temp 
    #                                    meaning temperature. n is number of the  
    #                                    sensor. See /sys/bus/i2c/devices/ on     
    #                                    your local computer.                     
    #  kernel                            Kernel version                           
    #  loadavg           (1), (2), (3)   System load average, 1 is for past 1     
    #                                    minute, 2 for past 5 minutes and 3 for   
    #                                    past 15 minutes.                         
    #  machine                           Machine, i686 for example                
    #  mails                             Mail count in mail spool. You can use    
    #                                    program like fetchmail to get mails from 
    #                                    some server using your favourite         
    #                                    protocol. See also new_mails.            
    #  mem                               Amount of memory in use                  
    #  membar            (height)        Bar that shows amount of memory in use   
    #  memmax                            Total amount of memory                   
    #  memperc                           Percentage of memory in use              
    #  new_mails                         Unread mail count in mail spool.         
    #  nodename                          Hostname                                 
    #  outlinecolor      (color)         Change outline color                     
    #  pre_exec          shell command   Executes a shell command one time before 
    #                                    torsmo displays anything and puts output 
    #                                    as text.                                 
    #  processes                         Total processes (sleeping and running)   
    #  running_processes                 Running processes (not sleeping),        
    #                                    requires Linux 2.6                       
    #  shadecolor        (color)         Change shading color                     
    #  stippled_hr       (space),        Stippled (dashed) horizontal line        
    #                    (height)        
    #  swapbar           (height)        Bar that shows amount of swap in use     
    #  swap                              Amount of swap in use                    
    #  swapmax                           Total amount of swap                     
    #  swapperc                          Percentage of swap in use                
    #  sysname                           System name, Linux for example           
    #  time              (format)        Local time, see man strftime to get more 
    #                                    information about format                 
    #  totaldown         net             Total download, overflows at 4 GB on     
    #                                    Linux with 32-bit arch and there doesn't 
    #                                    seem to be a way to know how many times  
    #                                    it has already done that before torsmo   
    #                                    has started.                             
    #  totalup           net             Total upload, this one too, may overflow 
    #  updates                           Number of updates (for debugging)        
    #  upspeed           net             Upload speed in kilobytes                
    #  upspeedf          net             Upload speed in kilobytes with one       
    #                                    decimal                                  
    #  uptime                            Uptime                                   
    #  uptime_short                      Uptime in a shorter format               
    #
    #  seti_prog                         Seti@home current progress
    #  seti_progbar      (height)        Seti@home current progress bar
    #  seti_credit                       Seti@hoome total user credit
    
    
    # variable is given either in format $variable or in ${variable}. Latter
    # allows characters right after the variable and must be used in network
    # stuff because of an argument
    #${font Dungeon:style=Bold:pixelsize=10}I can change the font as well
    #${font Verdana:size=10}as many times as I choose
    #${font Perry:size=10}Including UTF-8,
    # stuff after 'TEXT' will be formatted on screen
    #${font Grunge:size=12}${time %a  %b  %d}${alignr -25}${time %k:%M}
    
    TEXT
    ${color #0077ff}$sysname $kernel $machine - $nodename 
    
    ${color #0077ff}Uptime:${color lightgrey} $uptime ${color #0077ff} Load:${color lightgrey} $loadavg
    
    ${color #0077ff}${execi 1000 cat /proc/cpuinfo | grep 'model name' | sed -e 's/model name.*: //'} ${color lightgrey}${freq_dyn}Mhz
    ${color #0077ff}Usage:${color #0077ff} ${color lightgrey}${cpu}% ${color #0077ff}${cpubar}
    ${color #0077ff}${cpugraph 000000 0077ff}
    ${color #0077ff}Proces:${color lightgrey} $processes  ${color #0077ff}Run:${color lightgrey} $running_processes ${color #0077ff}CPU:${color lightgrey} ${i2c temp 2}C${color lightgrey} ${color #0077ff}MB:${color lightgrey} ${i2c temp 1}C
    
    ${color #0077ff}RAM:${color lightgrey} $mem/$memmax - $memperc% ${alignr}${color #0077ff}${membar 5,110}
    ${color #0077ff}SWP:${color lightgrey} $swap/$swapmax - $swapperc% ${alignr}${color #0077ff}${swapbar 5,110}
    
    
    
    ${color #0077ff}Hard Disks:
    ${color #0077ff} Root ${color lightgrey}${fs_used /}/${fs_size /}${alignr}${color #0077ff}${fs_bar 5,120 /}
    ${color #0077ff} Home ${color lightgrey}${fs_used /home}/${fs_size /home}${alignr}${color #0077ff}${fs_bar 5,120 /home}
    
    
    ${color #0077ff}CPU Usage         PID     CPU%   MEM%
    ${color lightgrey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
    ${color #0077ff} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
    ${color #0077ff} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
    ${color #0077ff}Mem Usage
    ${color lightgrey} ${top_mem name 1} ${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem 1}
    ${color #0077ff} ${top_mem name 2} ${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem 2}
    ${color #0077ff} ${top_mem name 3} ${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem 3}
    
    ${color #0077ff}Network: ${color lightgrey}${addr eth1}
    
    ${color #0077ff}Down:${color lightgrey} ${downspeed eth1} k/s $alignr${color #0077ff} Up:${color lightgrey} ${upspeed eth1} k/s
    ${color #0077ff}${downspeedgraph eth1 27,120 000000 0077ff 180} $alignr${color #0077ff}${upspeedgraph eth1 27,120 000000 0077ff 25}
    ${color lightgrey}${totaldown eth1}           $alignr${color lightgrey}${totalup eth1}
    
    ${color #0077ff}Network: ${color lightgrey}${addr eth1}
    
    ${color #0077ff}Down:${color lightgrey} ${downspeed ath0} k/s $alignr${color #0077ff} Up:${color lightgrey} ${upspeed eth1} k/s
    ${color #0077ff}${downspeedgraph ath0 27,120 000000 0077ff 180} $alignr${color #0077ff}${upspeedgraph ath0 27,120 000000 0077ff 25}
    ${color lightgrey}${totaldown ath0}           $alignr${color lightgrey}${totalup ath0}
    
    ${color #0077ff}Port(s)${alignr}#Connections
    ${color #0077ff}Inbound: ${color lightgrey}${tcp_portmon 1 32767 count}  ${color #0077ff}Outbound: ${color lightgrey}${tcp_portmon 32768 61000 count}${alignr}${color #0077ff}Total: ${color lightgrey}${tcp_portmon 1 65535 count}
    
    ${color #0077ff}Inbound Connection ${alignr} Local Service/Port${color lightgrey}
     ${tcp_portmon 1 32767 rhost 0} ${alignr} ${tcp_portmon 1 32767 lservice 0}
     ${tcp_portmon 1 32767 rhost 1} ${alignr} ${tcp_portmon 1 32767 lservice 1}
     ${tcp_portmon 1 32767 rhost 2} ${alignr} ${tcp_portmon 1 32767 lservice 2}
     ${tcp_portmon 1 32767 rhost 3} ${alignr} ${tcp_portmon 1 32767 lservice 3}
     ${tcp_portmon 1 32767 rhost 4} ${alignr} ${tcp_portmon 1 32767 lservice 4}
     ${tcp_portmon 1 32767 rhost 5} ${alignr} ${tcp_portmon 1 32767 lservice 5}
     ${tcp_portmon 1 32767 rhost 6} ${alignr} ${tcp_portmon 1 32767 lservice 6}
    Just because we were young, it doesn't mean we were wrong.
    1. AMD 4600+ dual-core (2.3ghzx2) 2 Gig DDR2 667 MSI OC 8600GTS 160GB SATA
    2. Intel Centrino 1.6ghz 2gig DDR400 mobility 9600 100gb HD internal ipw2200, cardbus WG511T

  6. #326
    Join Date
    Jun 2007
    Location
    Boise
    Beans
    54
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Post your .conkyrc files w/ screenshots

    ugh here it is. sorry
    Attached Images Attached Images
    Just because we were young, it doesn't mean we were wrong.
    1. AMD 4600+ dual-core (2.3ghzx2) 2 Gig DDR2 667 MSI OC 8600GTS 160GB SATA
    2. Intel Centrino 1.6ghz 2gig DDR400 mobility 9600 100gb HD internal ipw2200, cardbus WG511T

  7. #327
    Join Date
    Mar 2007
    Beans
    146

    Re: Post your .conkyrc files w/ screenshots

    Took me a while, and I have gone overboard on the colours....I'll revisit the colours soon.

    Xfce4 - Conky - GDesklets

    I have system metres at the top of the screen with Amarok bottom left. The album art is done with GDesklets.

    conkyrc_metres
    Code:
    # Conky metres
    
    # set to yes if you want Conky to be forked in the background
    background no
    
    # Use Xft?
    use_xft yes
    
    # Xft font when Xft is enabled
    xftfont Bitstream Vera Sans Mono:size=10
    
    # Text alpha when using Xft
    xftalpha 0.4
    
    # Update interval in seconds
    update_interval 2.0
    
    # This is the number of times Conky will update before quitting.
    # Set to zero to run forever.
    total_run_times 0
    
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    
    # If own_window is yes, you may use type normal, desktop or override
    own_window_type desktop
    
    # Use pseudo transparency with own_window?
    own_window_transparent yes
    
    # If own_window is yes, these window manager hints may be used
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    
    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes
    
    # Minimum size of text area
    minimum_size 885 5
    maximum_width 885
    
    # Draw shades?
    draw_shades no
    
    # Draw outlines?
    draw_outline no
    
    # Draw borders around text
    draw_borders no
    
    # Draw borders around graphs
    draw_graph_borders yes
    
    # Stippled borders?
    stippled_borders 8
    
    # border margins
    border_margin 4
    
    # border width
    border_width 1
    
    # Default colors and also border colors
    default_color #bbbbbb
    default_shade_color black
    default_outline_color black
    
    # Text alignment, other possible values are commented
    alignment top_left
    #alignment top_right
    #alignment bottom_left
    #alignment bottom_right
    #alignment none
    
    # Gap between borders of screen and text
    # same thing as passing -x at command line
    gap_x 142
    gap_y 0
    
    # Subtract file system buffers from used memory?
    no_buffers yes
    
    # set to yes if you want all text to be in uppercase
    uppercase no
    
    # number of cpu samples to average
    # set to 1 to disable averaging
    cpu_avg_samples 2
    
    # number of net samples to average
    # set to 1 to disable averaging
    net_avg_samples 2
    
    # Force UTF8? note that UTF8 support required XFT
    override_utf8_locale no
    
    # Add spaces to keep things from moving about?  This only affects certain objects.
    use_spacer no
    
    # stuff after 'TEXT' will be formatted on screen
    
    TEXT
    ${color cc2222}${cpugraph cpu1 20,100 440000 cc2222}
    ${color}${voffset -25}${offset 5}CPU: ${cpu cpu1}%
    ${color cc7722}${voffset -25}${offset 110}${membar 20,100}
    ${color}${voffset -25}${offset 115}MEM: ${memperc}%
    ${color cccc22}${voffset -25}${offset 220}${swapbar 20,100}
    ${color}${voffset -25}${offset 225}SWAP: ${swapperc}%
    ${color 77cc22}${voffset -25}${offset 330}${fs_bar 20,100 /}
    ${color}${voffset -25}${offset 335}ROOT: ${fs_free_perc /}%
    ${color 22cc22}${voffset -25}${offset 440}${fs_bar 20,100 /home}
    ${color}${voffset -25}${offset 445}HOME: ${fs_free_perc /home}%
    ${color 2222cc}${voffset -25}${offset 550}${fs_bar 20,100 /mnt/files}
    ${color}${voffset -25}${offset 555}FILES: ${fs_free_perc /mnt/files}%
    ${color 7722cc}${voffset -25}${offset 660}${downspeedgraph eth0 20,100 220044 7722cc}
    ${color}${voffset -25}${offset 665}IN: ${downspeed eth0}Kb/s
    ${color cc22cc}${voffset -25}${offset 770}${upspeedgraph eth0 20,100 440044 cc22cc}
    ${color}${voffset -25}${offset 775}OUT: ${upspeed eth0}Kb/s
    conkyrc_amarok
    Code:
    # Draw shades?
    draw_shades no
    
    # Draw outlines?
    draw_outline no
    
    # Draw borders around text
    draw_borders no
    
    # Draw borders around graphs
    draw_graph_borders no
    
    # Stippled borders?
    stippled_borders 8
    
    # border margins
    border_margin 4
    
    # border width
    border_width 1
    
    # Default colors and also border colors
    default_color #bbbbbb
    default_shade_color black
    default_outline_color black
    
    # Text alignment, other possible values are commented
    #alignment top_left
    #alignment top_right
    alignment bottom_left
    #alignment bottom_right
    #alignment none
    
    # Gap between borders of screen and text
    # same thing as passing -x at command line
    gap_x 2
    gap_y -4
    
    # Subtract file system buffers from used memory?
    no_buffers yes
    
    # set to yes if you want all text to be in uppercase
    uppercase no
    
    # Force UTF8? note that UTF8 support required XFT
    override_utf8_locale no
    
    # Add spaces to keep things from moving about?  This only affects certain objects.
    use_spacer no
    
    # stuff after 'TEXT' will be formatted on screen
    
    TEXT
     ${if_running amarokapp}${offset -8}${voffset 2}${color 22cc22}${execi 1 dcop amarok player currentTime}${alignc}${color cc7722}${execi 1 dcop amarok player title}  ${color cccc22}${execi 1 dcop amarok player artist}${alignr}${color cc2222}${execi 1 dcop amarok player totalTime}${voffset -2}
    ${color 2222cc}${execibar 1 /home/denham2010/.conkyrc/amarok_conky.sh pro}${else} ${offset -8}
    ${color 2222cc}${execibar 10 /home/denham2010/.conkyrc/amarok_conky.sh zer}$endif
    amarok_conky.sh
    Code:
    #!/bin/bash
    # amaroK info conky script
    
    case "$1" in
    
    pro)
        stat=`dcop amarok player status`
        if (( $stat == 0 )); then
            expr 100
        else
            curr=`dcop amarok player trackCurrentTime`
            tot=`dcop amarok player trackTotalTime`
            if (( $tot )); then
                expr $curr \* 100  / $tot
            fi
        fi
        ;;
    zer)
        expr 100
        ;;
    
    esac
    conkyalbum.display
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    
    <display id="d2010media" window-flags="below, sticky">
    
      <control id="myexec" interface = "IExec:8es4mvgrwsac7mp9lexx82qs9-2"/>
    
      <image id="pc_art" uri="" width="100" height="100" anchor="nw" x="0" y="0" />
    
      <script><![CDATA[
        
        def timer():
          myexec.command = "dcop amarok player coverImage"
          Dsp.pc_art.uri = myexec.output
          return True
     
        add_timer(2000,timer)
    
      ]]></script>
    
    </display>
    Screenshot

  8. #328
    Join Date
    Apr 2007
    Location
    Derby, UK
    Beans
    228

    Re: Post your .conkyrc files w/ screenshots

    .conkyrc:
    Code:
    maximum_width 230
    
    # set to yes if you want Conky to be forked in the background
    background no
    
    # X font when Xft is disabled, you can pick one with program xfontsel
    #font 5x7
    #font 6x10
    #font 7x13
    #font 8x13
    #font 9x15
    #font *mintsmild.se*
    #font -*-*-*-*-*-*-34-*-*-*-*-*-*-*
    
    # Use Xft?
    use_xft yes
    
    # Xft font when Xft is enabled
    xftfont Bitstream:size=8
    
    # Text alpha when using Xft
    xftalpha 0.8
    
    # Print everything to stdout?
    # out_to_console no
    
    # MPD host/port
    # mpd_host localhost
    # mpd_port 6600
    # mpd_password tinker_bell
    
    # Print everything to console?
    # out_to_console no
    
    # mail spool
    mail_spool $MAIL
    
    # Update interval in seconds
    update_interval 1
    
    # This is the number of times Conky will update before quitting.
    # Set to zero to run forever.
    total_run_times 0
    
    # Create own window instead of using desktop (required in nautilus)
    own_window no
    
    # If own_window is yes, you may use type normal, desktop or override
    own_window_type normal
    
    # Use pseudo transparency with own_window?
    own_window_transparent yes
    
    # If own_window_transparent is set to no, you can set the background colour here
    own_window_colour hotpink
    
    # If own_window is yes, these window manager hints may be used
    #own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    
    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes
    
    # Minimum size of text area
    minimum_size 280 5
    
    # Draw shades?
    draw_shades no
    
    # Draw outlines?
    draw_outline no
    
    # Draw borders around text
    draw_borders no
    
    # Draw borders around graphs
    draw_graph_borders yes
    
    # Stippled borders?
    stippled_borders 8
    
    # border margins
    border_margin 4
    
    # border width
    border_width 1
    
    # Default colors and also border colors
    default_color white
    default_shade_color black
    default_outline_color black
    
    # Text alignment, other possible values are commented
    alignment top_left
    #alignment top_right
    #alignment bottom_left
    #alignment bottom_right
    #alignment none
    
    # Gap between borders of screen and text
    # same thing as passing -x at command line
    gap_x 8
    gap_y 25
    
    # Subtract file system buffers from used memory?
    no_buffers yes
    
    # set to yes if you want all text to be in uppercase
    uppercase no
    
    # number of cpu samples to average
    # set to 1 to disable averaging
    cpu_avg_samples 2
    
    # number of net samples to average
    # set to 1 to disable averaging
    net_avg_samples 2
    
    # Force UTF8? note that UTF8 support required XFT
    override_utf8_locale no
    
    # Add spaces to keep things from moving about?  This only affects certain objects.
    use_spacer no
    
    # Allow each port monitor to track at most this many connections (if 0 or not set, default is 256)
    #max_port_monitor_connections 256
    
    # Maximum number of special things, e.g. fonts, offsets, aligns, etc.
    #max_specials 512
    
    # Maximum size of buffer for user text, i.e. below TEXT line.
    #max_user_text 16384
    
    # variable is given either in format $variable or in ${variable}. Latter
    # allows characters right after the variable and must be used in network
    # stuff because of an argument
    
    # stuff after 'TEXT' will be formatted on screen
    
    TEXT
    ${color white}${time %a, }${time %e %B %G} $alignr${time %H:%M:%S}
    ${color aeaeae}Uptime: ${color white}$uptime${alignr}${color aeaeae}CPU Temp:${color white}$acpitemp
    ${color aeaeae}Kernel: ${color white}$kernel
    
    ${color aeaeae}RAM: ${color white}$mem/$memmax${alignr}${membar 5,100}
    ${color aeaeae}Swap: ${color white}$swap/$swapmax${alignr}${swapbar 5,100}
    ${color aeaeae}CPU Usage: ${color white}$cpu%${alignr}${cpubar 5,100}
    ${cpugraph 0000ff 00ff00}
    
    ${color aeaeae}Harddrive: $color${fs_used /}/${fs_size /} 
    ${fs_bar /}
    
    ${color aeaeae}Processes: ${color white}$processes ${alignr}${color aeaeae}Running: ${color white}$running_processes
    
    ${color aeaeae}Highest CPU:
     ${color de0b0b}${top name 1}${top_mem cpu 1}
     ${color white}${top name 2}${top cpu 2}
     ${top name 3}${top cpu 3}
     ${top name 4}${top cpu 4}
     ${top name 5}${top cpu 5}
    
    ${color aeaeae}Highest MEM:
     ${color de0b0b}${top_mem name 1}${top_mem mem 1}
     ${color white}${top_mem name 2}${top_mem mem 2}
     ${top_mem name 3}${top_mem mem 3}
     ${top_mem name 4}${top_mem mem 4}
     ${top_mem name 5}${top_mem mem 5}
    What does 'forked to background' mean?
    Attached Images Attached Images

  9. #329
    Join Date
    Aug 2006
    Location
    US
    Beans
    1,681

    Re: Post your .conkyrc files w/ screenshots

    here's my new one
    Code:
    own_window yes
    own_window_hints undecorated,below,skip_taskbar
    background no
    
    double_buffer yes
    
    use_spacer yes
    use_xft yes
    
    update_interval 3.0
    
    minimum_size 400 5
    
    draw_shades yes
    
    draw_outline no
    draw_borders no
    
    uppercase no 
    
    stippled_borders 8
    
    border_margin 4
    
    border_width 1
    
    default_color white
    default_shade_color black
    default_outline_color white
    
    own_window_colour black
    own_window_transparent yes
    
    alignment top_left
    
    gap_x 10
    gap_y 10
    
    
    override_utf8_locale no
    xftfont gelly
    xftalpha 0.8
    
    TEXT
    ${color grey}Ubuntu 7.04
    
    ${color #E30076}Kernel: ${color }$kernel
    ${color #E30076}Uptime: ${color }$uptime
    ${color #E30076}Load: ${color }$loadavg
    ${color #E30076}Processes: ${color }$processes  
    ${color #E30076}Running:   ${color }$running_processes
    
    ${color #E30076}CPU: ${color } $cpu%  ${acpitemp}C
    ${cpubar 3,100}
    ${color lightgrey} ${top name 1}${top_mem cpu 1}
    ${color lightgrey} ${top name 2}${top cpu 2}
    ${color lightgrey} ${top name 3}${top cpu 3}
    ${color lightgrey} ${top name 4}${top cpu 4}
    
    ${color #E30076}MEM: ${color }$memperc% $mem/$memmax
    ${membar 3,100}
    ${color lightgrey} ${top_mem name 1}${top_mem mem 1}
    ${color lightgrey} ${top_mem name 2}${top_mem mem 2}
    ${color lightgrey} ${top_mem name 3}${top_mem mem 3}
    ${color lightgrey} ${top_mem name 4}${top_mem mem 4}
    
    ${color #E30076}Gmail: ${color lightgrey}${execi 300 python ~/gmail.py}
    
    ${color #E30076}Time: ${color }${time %H:%M, %a %e %B}
    gmail.py thanks to RLembke
    Attached Images Attached Images
    Last edited by dbbolton; July 8th, 2007 at 12:36 AM.

  10. #330
    Join Date
    Mar 2006
    Location
    Newport, Uk
    Beans
    20
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your .conkyrc files w/ screenshots

    My first conky, totally plagiarised from the excellent posts in this thread!

    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 connections to your computer
    #
    # -- Pengo (conky@pengo.us)
    #
    
    # Create own window instead of using desktop (required in nautilus)
    own_window no
    own_window_type override
    own_window_transparent yes
    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 yes
    use_xft yes
    
    # Xft font when Xft is enabled
    xftfont Comic Sans MS:size=8
    #xftalpha 0.5
    
    # Force UTF8? note that UTF8 support required XFT
    override_utf8_locale yes
    
    
    
    # Update interval in seconds
    update_interval 3.0
    
    # Minimum size of text area
    # minimum_size 250 5
    
    # Draw shades?
    draw_shades no
    
    # Text stuff
    draw_outline no # amplifies text if yes
    draw_borders no
    #font -*-purisa-*-*-*-*-11-*-*-*-*-*-*-*
    #font -*-comic sans ms-*-*-*-*-11-*-*-*-*-*-*-*
    uppercase no # set to yes if you want all text to be in uppercase
    
    # Stippled borders?
    stippled_borders 3
    
    # border margins
    border_margin 9
    
    # border width
    border_width 10
    
    # Default colors and also border colors, grey90 == #e5e5e5
    default_color grey
    
    own_window_colour brown
    own_window_transparent yes
    
    # 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 10
    gap_y 35
    
    
    
    # stuff after 'TEXT' will be formatted on screen
    
    TEXT
    ${color 469bdc}$nodename  ${hr}
    ${color }Today is: $alignr${color }${time %A, }${time %e %B %G}
    ${color }The time is: $alignr${color }${time %H:%M:%S}
    ${color }UpTime: $alignr${color }$uptime 
    ${color }Architecture: $alignr${color }$machine
    ${color }Kernel:$alignr${color }$kernel
    
    ${color 469bdc}Battery${hr}
    ${color }Power:${alignr}${color}${acpiacadapter}
    ${color }Status:${alignr}${color}${battery BAT1}
    ${color }Time:${alignr}${color}${battery_time BAT1}
    
    ${color 469bdc}Intel(R) Core(TM)2 CPU     T5500 @ 1.66GHz ${hr 2}$color
    ${color }CPU0: ${cpu cpu1}% ${cpubar cpu1}
    ${color }CPU1: ${cpu cpu2}% ${cpubar cpu2}
    ${color }CPU Temp: ${acpitemp}.C
    
    ${color 469bdc}Memory / Disk ${hr}$color
    RAM:   $memperc%   ${membar 6}$color
    Swap:  $swapperc%   ${swapbar 6}$color
    Disk:	${fs_free_perc /} %    ${fs_bar 6 /}$color 
    HDD Temp: ${hddtemp /dev/sda localhost 7634}
    
    ${color 469bdc}Wireless (Signal Strength ${linkstatus eth1}%) ${hr}$color
    Down: $color${downspeed eth1} k/s ${alignr}Up: ${upspeed eth1} k/s
    Total: ${totaldown eth1} ${alignr}Total: ${totalup eth1}
    Inbound: ${tcp_portmon 1 32767 count}      Outbound: ${tcp_portmon 32768 
    61000 count}${alignr}Total: ${tcp_portmon 1 65535 count}
    
    ${color 469bdc}Gmail ${hr}
    ${color }${texeci 300 python /home/mark/.conky/gmail.py}
    
    ${color #469bdc}Weather ${hr}
    ${color }${execi 1800 /home/mark/.conky/weather/weather.sh UKXX0099}
    ${if_running amarokapp}
    ${color 469bdc}Now Playing ${hr}${color}
    ${alignc}${execi 10 ~/.conky/amarok artist}
    ${alignc}${execi 10 ~/.conky/amarok title}
    ${execibar 1 ~/.conky/amarok progress}
    ${alignc}"${execi 10 ~/.conky/amarok album}"
    ${alignc}${execi 10 ~/.conky/amarok year} - ${alignc}${execi 10 ~/.conky/amarok genre}
    $endif
    ${if_running audacious}
    ${color 469bdc}Now Playing ${hr}
    ${color black}AUD:${color #C0C8CD} ${exec audtool --current-song | cut -b-34}
    ${color } ${exec audtool --current-song-bitrate-kbps} kbps * ${exec audtool --current-song-length}  ${execbar expr 100 \* $(audtool --current-song-output-length-seconds) \/ $(audtool --current-song-length-seconds)}
    $endif
    Attached Images Attached Images

Page 33 of 2348 FirstFirst ... 23313233343543831335331033 ... 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
  •