Page 1191 of 2348 FirstFirst ... 1916911091114111811189119011911192119312011241129116912191 ... LastLast
Results 11,901 to 11,910 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #11901
    Join Date
    Dec 2008
    Location
    The Desert
    Beans
    281
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by arzali View Post
    if it helps you can use luarings and text with one script.

    Code:
    --[[
    Conky Widgets by londonali1010 (2009)
    
    Call this script in Conky using the following before TEXT (assuming you save this script to ~/scripts/conky_widgets.lua):
        lua_load ~/Scripts/conky_widgets.lua
        lua_draw_hook_pre load_widgets ]]
    
    require 'cairo'
    function draw_atext()
        if conky_window==nil then return end
        local w=conky_window.width
        local h=conky_window.height
        local cs=cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, w, h)
        cr=cairo_create(cs)
    
        
            
    -- Font
    cairo_select_font_face (cr, "Verana", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
    
    -- font size
    cairo_set_font_size (cr, 30.0);
    
    --font color
    cairo_set_source_rgba (cr, 1, 1, 1, 1);
    
    cairo_translate (cr, 128.0, 128.0);
    -- angle
    cairo_rotate(cr,-0.38);
    
    -- text position
    cairo_move_to (cr, 190.0, 470.0);
    
    -- shown text
    cairo_show_text (cr, conky_parse('${time %H:%M}'))
    
    
    cairo_rotate(cr,-0.10);
    cairo_set_font_size (cr, 12.0);
    cairo_move_to (cr, 100.0, 480.0);
    cairo_show_text (cr, conky_parse('${time  %h %d}'))
    
    cairo_rotate(cr,-0.18);
    cairo_set_font_size (cr, 14.0);
    cairo_move_to (cr, -60.0, 485.0);
    cairo_show_text (cr, conky_parse('${time %A}'))
    
    cairo_rotate(cr,-0.90);
    cairo_set_font_size (cr, 14.0);
    cairo_move_to (cr, -457.0, 243.0);
    cairo_show_text (cr, conky_parse('${if_match ${execi 5 ~/Documents/code/hddmonit.sh} > 60}${color red}${execi 5 ~/Documents/code/hddmonit.sh}$color$else${execi 5 ~/Documents/code/hddmonit.sh}$endif°C'))
    
    cairo_rotate(cr,2.15);
    cairo_set_font_size (cr, 14.0);
    cairo_move_to (cr, 465.0, 268.0);
     cairo_show_text (cr, conky_parse('Gmail: ${execi 600 conkyEmail --servertype=IMAP --servername=imap.googlemail.com --username=xyz --password=xyz --ssl}'))
    
    cairo_rotate(cr,-0.42);
    cairo_set_font_size (cr, 14.0);
    cairo_move_to (cr, 380.0, 460.0);
    cairo_show_text (cr, conky_parse('${execi 3600 conkyForecast -i --location=USAZ0207 --datatype=LT}'))
    
    cairo_rotate(cr,-0.05);
    cairo_set_font_size (cr, 14.0);
    cairo_move_to (cr, 410.0, 485.0);
    cairo_show_text (cr, conky_parse('Now Playing: '))
    
    cairo_rotate(cr,-0.08);
    cairo_set_font_size (cr, 14.0);
    cairo_move_to (cr, 470.0, 530.0);
    cairo_show_text (cr, conky_parse('${exec rhythmbox-client --no-start --print-playing}'))
    
    cairo_rotate(cr,-0.15);
    cairo_set_font_size (cr, 14.0);
    cairo_move_to (cr, 670.0, 640.0);
    cairo_show_text (cr, conky_parse('${execi 3600 conkyForecast -i --location=USAZ0207 --datatype=CC}'))
    
    cairo_rotate(cr,-0.50);
    cairo_set_font_size (cr, 14.0);
    cairo_move_to (cr, 395.0, 950.0);
    cairo_show_text (cr, conky_parse('${execi 3600 conkyForecast -i --location=USAZ0207 --datatype=HT}'))
    
    cairo_rotate(cr,-0.90);
    cairo_set_font_size (cr, 14.0);
    cairo_move_to (cr, -460.0, 930.0);
    cairo_show_text (cr, conky_parse('${if_match ${acpitemp} > 60}${color red}${acpitemp}$color$else${acpitemp}$endif°C'))
    
    cairo_rotate(cr,1.90);
    cairo_set_font_size (cr, 14.0);
    cairo_move_to (cr, 935.0, 120.0);
    cairo_show_text (cr, conky_parse('U:${upspeed eth1}/s '))
    
    cairo_rotate(cr,-0.10);
    cairo_set_font_size (cr, 14.0);
    cairo_move_to (cr, 860.0, 225.0);
    cairo_show_text (cr, conky_parse('D:${downspeed eth1}/s'))
    
    cairo_stroke (cr);
    
    
    
    
    end
    
    
    --[[
    Ring Meters by londonali1010 (2009)
     
    This script draws percentage meters as rings. It is fully customisable; all options are described in the script.
     
    IMPORTANT: if you are using the 'cpu' function, it will cause a segmentation fault if it tries to draw a ring straight away. The if statement on line 145 uses a delay to make sure that this doesn't happen. It calculates the length of the delay by the number of updates since Conky started. Generally, a value of 5s is long enough, so if you update Conky every 1s, use update_num > 5 in that if statement (the default). If you only update Conky every 2s, you should change it to update_num > 3; conversely if you update Conky every 0.5s, you should use update_num > 10. ALSO, if you change your Conky, is it best to use "killall conky; conky" to update it, otherwise the update_num will not be reset and you will get an error.
     
    To call this script in Conky, use the following (assuming that you save this script to ~/scripts/rings.lua):
        lua_load ~/scripts/rings-v1.2.1.lua
        lua_draw_hook_pre ring_stats
     
    Changelog:
    + v1.2.1 -- Fixed minor bug that caused script to crash if conky_parse() returns a nil value (20.10.2009)
    + v1.2 -- Added option for the ending angle of the rings (07.10.2009)
    + v1.1 -- Added options for the starting angle of the rings, and added the "max" variable, to allow for variables that output a numerical value rather than a percentage (29.09.2009)
    + v1.0 -- Original release (28.09.2009)
    ]]
     
    settings_table = {
        {
            name='cpu',
            arg='cpu1',
            max=100,
            bg_colour=0xffffff,
            bg_alpha=0.4,
            fg_colour=0xffffff,
            fg_alpha=0.8,
            x=420, y=2545,
            radius=2000,
            thickness=5,
            start_angle=12,
            end_angle=16.6
        },
        {
            name='cpu',
            arg='cpu2',
            max=100,
            bg_colour=0xffffff,
            bg_alpha=0.2,
            fg_colour=0xffffff,
            fg_alpha=0.6,
            x=993, y=642,
            radius=13,
            thickness=5,
            start_angle=15,
            end_angle=160
        },
        
        {
            name='fs_free_perc',
            arg='/',
            max=100,
            bg_colour=0xffffff,
            bg_alpha=0.2,
            fg_colour=0xffffff,
            fg_alpha=0.6,
            x=800, y=-530,
            radius=1200,
            thickness=5,
            start_angle=185.7,
            end_angle=199
        },
        {
            name='memperc',
            arg='',
            max=100,
            bg_colour=0xffffff,
            bg_alpha=0.2,
            fg_colour=0xffffff,
            fg_alpha=0.6,
            x=405, y=582,
            radius=20,
            thickness=5,
            start_angle=190,
            end_angle=330
        },
        {
            name='swap',
            arg='',
            max=100,
            bg_colour=0xffffff,
            bg_alpha=0.2,
            fg_colour=0xffffff,
            fg_alpha=0.6,
            x=625, y=830,
            radius=350,
            thickness=5,
            start_angle=320,
            end_angle=340
        },
    }
     
    require 'cairo'
     
    function rgb_to_r_g_b(colour,alpha)
        return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255., (colour % 0x100) / 255., alpha
    end
     
    function draw_ring(cr,t,pt)
        local w,h=conky_window.width,conky_window.height
     
        local xc,yc,ring_r,ring_w,sa,ea=pt['x'],pt['y'],pt['radius'],pt['thickness'],pt['start_angle'],pt['end_angle']
        local bgc, bga, fgc, fga=pt['bg_colour'], pt['bg_alpha'], pt['fg_colour'], pt['fg_alpha']
     
        local angle_0=sa*(2*math.pi/360)-math.pi/2
        local angle_f=ea*(2*math.pi/360)-math.pi/2
        local t_arc=t*(angle_f-angle_0)
     
        -- Draw background ring
     
        cairo_arc(cr,xc,yc,ring_r,angle_0,angle_f)
        cairo_set_source_rgba(cr,rgb_to_r_g_b(bgc,bga))
        cairo_set_line_width(cr,ring_w)
        cairo_stroke(cr)
     
        -- Draw indicator ring
     
        cairo_arc(cr,xc,yc,ring_r,angle_0,angle_0+t_arc)
        cairo_set_source_rgba(cr,rgb_to_r_g_b(fgc,fga))
        cairo_stroke(cr)        
    end
     
    function conky_ring_stats()
        local function setup_rings(cr,pt)
            local str=''
            local value=0
     
            str=string.format('${%s %s}',pt['name'],pt['arg'])
            str=conky_parse(str)
     
            value=tonumber(str)
            if value == nil then value = 0 end
            pct=value/pt['max']
     
            draw_ring(cr,pct,pt)
        end
     
        if conky_window==nil then return end
        local cs=cairo_xlib_surface_create(conky_window.display,conky_window.drawable,conky_window.visual, conky_window.width,conky_window.height)
     
        local cr=cairo_create(cs)    
     
        local updates=conky_parse('${updates}')
        update_num=tonumber(updates)
     
        if update_num>5 then
            for i in pairs(settings_table) do
                setup_rings(cr,settings_table[i])
            end
        end
    end
    
    function conky_load_widgets()
     if conky_window==nil then return end
        local cs=cairo_xlib_surface_create(conky_window.display,conky_window.drawable,conky_window.visual, conky_window.width,conky_window.height)
        
        local cr=cairo_create(cs)    
        
        local updates=conky_parse('${updates}')
        update_num=tonumber(updates)
        
        if update_num>5 then
           draw_atext()
           conky_ring_stats()
        end
    end
    it works like this for me but you have to fine tune some things
    so what would i put for the second part of the lua load: lua_draw_hook_pre draw_text or lua_draw_hook_pre ring_stats
    I'm a super power user

  2. #11902
    Join Date
    Nov 2009
    Beans
    Hidden!
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by djyoung4 View Post
    so what would i put for the second part of the lua load: lua_draw_hook_pre draw_text or lua_draw_hook_pre ring_stats
    lua_draw_hook_pre load_widgets

  3. #11903
    Join Date
    Oct 2009
    Beans
    41
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by abumaia View Post
    to prevent any text from being written over top of the image, put the $image tag at the very end of your conkyrc file, so it gets processed last. This works with other things too, like if you want to make a cpu bar and have the percent text written on top of the bar, you need to put the text after the bar in your conkyrc file. If you're gonna overlap something, whatever gets read last gets written on top. I hope that makes sense ^_^.
    thanks... i'll try that... so you're saying that it should be

    ${image ~/image.JPG -p 50,50}${image} or just $image at the end?

  4. #11904
    Join Date
    Dec 2009
    Location
    MT
    Beans
    43
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by ramjitmyrtle View Post
    thanks... i'll try that... so you're saying that it should be

    ${image ~/image.JPG -p 50,50}${image} or just $image at the end?
    nope, put ${image ~/image.JPG -p 50,50} as the very last item in your conkyrc, at the bottom of everything else.

  5. #11905
    Join Date
    Dec 2006
    Location
    Tennessee, United States
    Beans
    321
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your .conkyrc files w/ screenshots

    Code:
    # UBUNTU-CONKY
    
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    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
    
    # 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 yes # amplifies text if yes
    draw_borders no
    #font FreeSans -8
    xftfont candara:pixelsize=12
    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 40
    
    # stuff after 'TEXT' will be formatted on screen
    
    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
    ${cpugraph 000000 ffffff}
    ${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}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 Blue}Ubuntu ${hr 2}$color
    Root size:  ${fs_size /}$color
    Root used:  ${fs_used /}$color
    Root free:  ${fs_free /}$color ${fs_free_perc /}%   ${fs_bar 6 /}$color
     
    ${color Blue}Passthrough ${hr 2}$color
     size:  ${fs_size /media/Passthrough}$color
     used:  ${fs_used /media/Passthrough}$color
     free:  ${fs_free /media/Passthrough}$color ${fs_free_perc /media/Passthrough}%   ${fs_bar 6 /media/Passthrough}$color
    
    ${color Blue}NETWORK (${addr eth0}) ${hr 2}$color
    Down: $color${downspeed eth0} k/s ${alignr}Up: ${upspeed eth0} k/s
    ${downspeedgraph eth0 25,140 000000 ff0000} ${alignr}${upspeedgraph eth0 
    25,140 000000 00ff00}$color
    Total: ${totaldown eth0} ${alignr}Total: ${totalup eth0}
    Inbound: ${tcp_portmon 1 32767 count} Outbound: ${tcp_portmon 32768 
    61000 count}${alignr}Total: ${tcp_portmon 1 65535 count}

    Okay. I can't figure out why its so wide?I want it LESS than half the size it is now.

    Any ideas?
    Attached Images Attached Images

  6. #11906
    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 Jackzor View Post
    Code:
    # UBUNTU-CONKY
    
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    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
    
    # 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 yes # amplifies text if yes
    draw_borders no
    #font FreeSans -8
    xftfont candara:pixelsize=12
    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 40
    
    # stuff after 'TEXT' will be formatted on screen
    
    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
    ${cpugraph 000000 ffffff}
    ${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}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 Blue}Ubuntu ${hr 2}$color
    Root size:  ${fs_size /}$color
    Root used:  ${fs_used /}$color
    Root free:  ${fs_free /}$color ${fs_free_perc /}%   ${fs_bar 6 /}$color
     
    ${color Blue}Passthrough ${hr 2}$color
     size:  ${fs_size /media/Passthrough}$color
     used:  ${fs_used /media/Passthrough}$color
     free:  ${fs_free /media/Passthrough}$color ${fs_free_perc /media/Passthrough}%   ${fs_bar 6 /media/Passthrough}$color
    
    ${color Blue}NETWORK (${addr eth0}) ${hr 2}$color
    Down: $color${downspeed eth0} k/s ${alignr}Up: ${upspeed eth0} k/s
    ${downspeedgraph eth0 25,140 000000 ff0000} ${alignr}${upspeedgraph eth0 
    25,140 000000 00ff00}$color
    Total: ${totaldown eth0} ${alignr}Total: ${totalup eth0}
    Inbound: ${tcp_portmon 1 32767 count} Outbound: ${tcp_portmon 32768 
    61000 count}${alignr}Total: ${tcp_portmon 1 65535 count}

    Okay. I can't figure out why its so wide?I want it LESS than half the size it is now.

    Any ideas?
    Add
    Code:
    maximum_width 250
    above TEXT somewhere. Adjust the number to your liking.
    Registered Ubuntu User #29430

  7. #11907
    Join Date
    Dec 2009
    Location
    MT
    Beans
    43
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Jackzor View Post
    Code:
    # UBUNTU-CONKY
    
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    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
    
    # 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 yes # amplifies text if yes
    draw_borders no
    #font FreeSans -8
    xftfont candara:pixelsize=12
    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 40
    
    # stuff after 'TEXT' will be formatted on screen
    
    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
    ${cpugraph 000000 ffffff}
    ${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}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 Blue}Ubuntu ${hr 2}$color
    Root size:  ${fs_size /}$color
    Root used:  ${fs_used /}$color
    Root free:  ${fs_free /}$color ${fs_free_perc /}%   ${fs_bar 6 /}$color
     
    ${color Blue}Passthrough ${hr 2}$color
     size:  ${fs_size /media/Passthrough}$color
     used:  ${fs_used /media/Passthrough}$color
     free:  ${fs_free /media/Passthrough}$color ${fs_free_perc /media/Passthrough}%   ${fs_bar 6 /media/Passthrough}$color
    
    ${color Blue}NETWORK (${addr eth0}) ${hr 2}$color
    Down: $color${downspeed eth0} k/s ${alignr}Up: ${upspeed eth0} k/s
    ${downspeedgraph eth0 25,140 000000 ff0000} ${alignr}${upspeedgraph eth0 
    25,140 000000 00ff00}$color
    Total: ${totaldown eth0} ${alignr}Total: ${totalup eth0}
    Inbound: ${tcp_portmon 1 32767 count} Outbound: ${tcp_portmon 32768 
    61000 count}${alignr}Total: ${tcp_portmon 1 65535 count}
    Okay. I can't figure out why its so wide?I want it LESS than half the size it is now.

    Any ideas?
    It looks like your graphs and bars may be doing it... your cpugraph has no size attributes


  8. #11908
    Join Date
    Dec 2006
    Location
    Tennessee, United States
    Beans
    321
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by abumaia View Post
    It looks like your graphs and bars may be doing it... your cpugraph has no size attributes
    What would the codes to add be? This is the first I have messed with any of this...

    Thanks.

  9. #11909
    Join Date
    Dec 2006
    Location
    Tennessee, United States
    Beans
    321
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by dmillerct View Post
    Add
    Code:
    maximum_width 250
    above TEXT somewhere. Adjust the number to your liking.
    Didn't see this a second ago. Thank you that was it.

  10. #11910
    Join Date
    Dec 2006
    Location
    Tennessee, United States
    Beans
    321
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your .conkyrc files w/ screenshots

    Code:
    ${color #0077ff}Processes:${color #0077ff} $processes  ${color #0077ff}Run:${color #0077ff} $running_processes ${color #0077ff}CPU:${color #0077ff} ${i2c temp 2}C${color #0077ff} ${color #0077ff}MB:${color #0077ff} ${i2c temp 1}C
    ${color #0077ff}CPU Usage              PID            CPU%            MEM%
    ${color #0077ff} ${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 #0077ff} ${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}
    Anyone know how to line this up to where it will cut text off the Process name instead of moving it over and making it all out of whack?

Page 1191 of 2348 FirstFirst ... 1916911091114111811189119011911192119312011241129116912191 ... 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
  •