Page 2297 of 2348 FirstFirst ... 129717972197224722872295229622972298229923072347 ... LastLast
Results 22,961 to 22,970 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #22961
    Join Date
    May 2014
    Location
    Edmonton
    Beans
    Hidden!
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Post your .conkyrc files w/ screenshots

    Great job for someone with 0 beans under his belt

    Your network download speed shows as "49 bytes per kilo/second" In reality it's "49 bytes per second". If you don't hard code the unit of measure conky can automatically append "B/s" (bytes per second) or "KiB/s" (Kilobytes per second) or "Mbps" (Megabits per second). My abbreviations might be a bit off from the official standards but you get my drift.

    I've been thinking of doing a horizontal bar like yours it's a great idea. Too bad conky doesn't let you define a window that is say 6,000 pixels wide and then automatically scroll it within 1000 pixels physical width like the cable news ticker tape does.

  2. #22962
    Join Date
    Aug 2014
    Beans
    Hidden!
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Post your .conkyrc files w/ screenshots

    @MarcusCruz,
    Nice work.
    You may want to fix the position of each output using $goto
    so they don't slide about as your $cpu% output fluctuates between single and double digit.
    eg
    Code:
    ${color gray62}  CPU:${color red}  $cpu% ${color gray62} ${goto 90}RAM:  ${color blue}$mem/$memmax...............

    @WinEunuchs2Unix,
    If using unity you can use
    Code:
    own_window_type panel
    to position over a unity panel.
    Attached Images Attached Images
    Last edited by CantankRus; September 26th, 2014 at 01:55 AM.

  3. #22963
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by CantankRus View Post
    @MarcusCruz
    Nice work.
    You may want to fix the position of each output using $goto
    so they don't slide about as your $cpu% output fluctuates between single and double digit.
    eg
    Code:
    ${color gray62}  CPU:${color red}  $cpu% ${color gray62} ${goto 90}RAM:  ${color blue}$mem/$memmax...............
    Or pad them with spaces:
    Code:
    ${membar 0}
    ${alignc}Usage
    ${alignc}CPU %
    ${alignc}A ${if_match ${cpu cpu0} < 10}  ${cpu cpu0}\
    ${else}${if_match ${cpu cpu0} < 100} ${cpu cpu0}\
    ${else}${color9}${cpu cpu0}${color}${endif}${endif}
    ${alignc}${membar 0,25}
    ${alignc}1 ${if_match ${cpu cpu1} < 10}  ${cpu cpu1}\
    ${else}${if_match ${cpu cpu1} < 100} ${cpu cpu1}\
    ${else}${color9}${cpu cpu1}${color}${endif}${endif}
    ${alignc}2 ${if_match ${cpu cpu2} < 10}  ${cpu cpu2}\
    ${else}${if_match ${cpu cpu2} < 100} ${cpu cpu2}\
    ${else}${color9}${cpu cpu2}${color}${endif}${endif}
    ${alignc}3 ${if_match ${cpu cpu3} < 10}  ${cpu cpu3}\
    ${else}${if_match ${cpu cpu3} < 100} ${cpu cpu3}\
    ${else}${color9}${cpu cpu3}${color}${endif}${endif}
    ${membar 0}
    Shows a red 100 if the CPU is maxed out.
    Attached Images Attached Images

  4. #22964
    Join Date
    Jun 2014
    Location
    Scotland
    Beans
    57
    Distro
    Kubuntu 14.04 Trusty Tahr

    Re: Post your .conkyrc files w/ screenshots

    conky1.jpeg

    Code:
    alignment middle_right
    background white
    border_width 1
    cpu_avg_samples 2
    default_color white
    default_outline_color white
    draw_borders yes
    draw_graph_borders yes
    draw_outline no
    draw_shades no 
    use_xft yes
    xftfont DejaVu Sans Mono:size=9
    gap_x 5
    gap_y 60
    minimum_size 5 5
    net_avg_samples 2
    no_buffers yes
    out_to_console no
    own_window yes
    own_window_class Conky
    own_window_type normal
    stippled_borders 0
    update_interval 3.0
    uppercase no
    use_spacer none
    show_graph_scale no
    show_graph_range no
    
    TEXT
    ${color blue}:${scroll 16 $nodename - $sysname $kernel on $machine | }
    ${color blue}$hr
    ${color red}Uptime:$uptime
    ${color lightblue}RAM Usage:$mem/$memmax - $memperc% ${membar 7}
    ${color lightblue}Swap Usage:$swap/$swapmax - $swapperc% ${swapbar 7}
    ${color lightblue}CPU Usage: ${cpu cpu0}%  ${cpubar cpu0 7,90}${cpubar cpu1 7,35}${cpubar cpu2 7,35}
    ${color lightblue}cpu1 ${cpugraph cpu1 20, 235}
    ${color lightblue}cpu2 ${cpugraph cpu2 20, 235}
    ${color lightblue}cpu1 Temp: ${hwmon 1 temp 1}C    ${color lightblue}cpu2 Temp: ${hwmon 2 temp 1}C
    ${color green}$hr
    ${color green}File systems:
     / ${fs_free /}/${fs_size /} ${fs_bar 6 /}
    ${color green}Networking:
    Up:${upspeed eth1}k/s    Down:${downspeed eth1}k/s
    ${color green}$hr
    ${color yellow}Processes:$processes  ${color yellow}Running:$running_processes
    ${color yellow}Name                  PID   CPU%   MEM%
    ${color yellow} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
    ${color yellow} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
    ${color yellow} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
    ${color yellow} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
    ${color yellow} ${top name 5} ${top pid 5} ${top cpu 5} ${top mem 5}
    Last edited by Al1000; September 30th, 2014 at 12:27 PM. Reason: remove header

  5. #22965
    Join Date
    Oct 2013
    Location
    europe
    Beans
    155
    Distro
    Lubuntu Development Release

    Re: Post your .conkyrc files w/ screenshots

    --
    Last edited by syntaxerror74; October 7th, 2014 at 08:47 AM.

  6. #22966
    Join Date
    Apr 2014
    Beans
    2

    Re: Post your .conkyrc files w/ screenshots

    This is my conky. Hope you like it.

    Code:
    # Use Xft?
    use_xft yes
    xftfont AvantGarde:size=9
    
    # 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  yes
    own_window_transparent yes
    own_window_type override
    own_window_hints undecorate,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 768 5
    
    maximum_width 250
    
    # Draw shades?
    draw_shades no
    
    # Draw outlines?
    draw_outline no
    
    # Draw borders around text
    draw_borders no
    
    # Stippled borders?
    stippled_borders 0
    
    # border margins
    border_outer_margin 5
    
    # border width
    border_width 1
    
    # Default colors and also border colors
    #default_color 303030
    #default_shade_color white
    #default_outline_color black
    #own_window_colour 262524
    
    # 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
    # same thing as passing -x at command line
    gap_x 10
    gap_y 100
    
    # 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 yes
    
    # Add spaces to keep things from moving about?  This only affects certain objects.
    use_spacer right
    
    #COLORS
    color1 a4a4a4
    color3 9CFC4D
    color2 94D100 
    
    
    
    TEXT
    ${color1}${hr 1}
    ${color1}${alignc 20}${font DotMatrix:size=14}${time %H:%M:%S}${font}${color1}
    ${hr 1}
    |
    ${color3}o ${color1}--${color3} o${color2} DATE
    ${color1}|${offset 2}    ${color1}|${color1}
    |     ${color3}o ${color1}---${color3} o${color2} Day:${color1}................${time %A}
    |             ${color3} o${color2} Date:${color1}...............${time %d/%m/%y }
    |
    ${color3}o ${color1}--${color3} o${color2} SYS${color1}
    |${offset 2}    ${color1}|
    |     ${color3}o ${color1}---${color3} o${color2} OS:${color1}...................${offset 1}Xubuntu 14.04.1 LTS
    |             ${color3} o${color2} Kernel:${color1}............${offset 1}$kernel
    |             ${color3} o${color2} Up:${color1}...................${offset 1}$uptime
    |             ${color3} o${color2} Ram:${color1}................$mem/ $memmax
    |             ${color3} o${color2} Model:${color1}............${execi 1000 cat /proc/cpuinfo | grep 'model name' | uniq | cut -c 32-49}
    |             ${color3} o${color2} CPU1:${color1}...............${cpu cpu1}%
    |             ${color3} o${color2} CPU2:${color1}...............${cpu cpu2}%
    |             ${color3} o${color2} CPU-T:${color1}..............${execi 30 sensors |grep 'Core 0' | cut -c18-24}               
    |             ${color3} o${color2} Battery:${color1}............${battery_percent}%
    |             ${color3} o${color2} Time left:${color1}..........${battery_time}
    |
    ${color3}o ${color1}--${color3} o${color2} DISK${color1}
    |${offset 2}    ${color1}|
    |     ${color3}o ${color1}---${color3} o${color2} Root:${color1}................${fs_used /}/ ${fs_size /}
    |             ${color3} o${color2} Data:${color1}...............${fs_used /media/lazar/data_p}/ ${fs_size /media/lazar/data_p}
    |
    ${color3}o ${color1}--${color3} o${color2} NET${color1}
    ${offset 2}       ${color1}|
            ${color3}o ${color1}---${color3} o${color2} Public:${color1}...............${execi 3600 wget -qO- --tries=3 --connect-timeout=10 icanhazip.com}
                   ${color3} o${color2} Local_rl:${color1}...........${addr wlan0}
                   ${color3} o${color2} Local_ath:${color1}........${addr wlan1}
                   ${color3} o${color2} Up_rl:${color1}......................${upspeed wlan0}/s
                   ${color3} o${color2} Down_rl:${color1}................${downspeed wlan0}/s
                   ${color3} o${color2} Up_ath:${color1}......................${upspeed wlan1}/s
                   ${color3} o${color2} Down_ath:${color1}................${downspeed wlan1}/s
    Attached Images Attached Images

  7. #22967
    Join Date
    Jun 2014
    Location
    Scotland
    Beans
    57
    Distro
    Kubuntu 14.04 Trusty Tahr

    Re: Post your .conkyrc files w/ screenshots

    conky on my laptop:

    kubuntu_laptop_desktop1.jpeg

    Code:
    alignment top_right
    background true
    border_width 1
    cpu_avg_samples 2
    default_color 000000
    default_outline_color white
    default_shade_color white
    draw_borders no
    draw_graph_borders no
    draw_outline no
    draw_shades no
    use_xft yes
    xftfont Bitstream Vera Sans Mono:size=9
    gap_x 5
    gap_y 50
    minimum_size 5 5
    net_avg_samples 2
    no_buffers yes
    out_to_console no
    own_window yes
    own_window_argb_visual yes
    own_window_argb_value 100
    own_window_transparent yes
    own_window_class Conky
    own_window_type conky
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    stippled_borders 0
    update_interval 05.0
    uppercase no
    use_spacer none
    show_graph_scale no
    show_graph_range no
    
    TEXT
    ${color}${scroll 16 $nodename - $sysname $kernel on $machine | }
    Uptime: $uptime
    ${color green}$hr
    ${color}RAM Usage: $mem/$memmax - $memperc% ${membar 4}
    Swap Usage: $swap/$swapmax - $swapperc% ${swapbar 4}
    ${color green}$hr
    ${color}CPU Usage: $cpu% ${cpubar 4}
    CPU Temp: ${hwmon temp 1}C
    Frequency: ${freq}MHz 
    ${color green}$hr
    ${color}File systems:/ ${fs_free /}/${fs_size /} ${fs_bar 6 /}
    ${color green}$hr
    ${color}Networking:
    Up: ${upspeed eth0} k/s     Down: ${downspeed eth0} k/s
    ${color green}$hr
    ${color}Processes: $processes   Running: $running_processes
    ${color green}$hr
    ${color}Name              PID    CPU%   MEM%
    ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
    ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
    ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
    ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
    ${top name 5} ${top pid 5} ${top cpu 5} ${top mem 5}

  8. #22968
    Join Date
    Aug 2010
    Location
    Jamaica
    Beans
    103
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Post your .conkyrc files w/ screenshots

    I did this back in July

    Code:
    # Conky settings #background no
    update_interval 1
    
    
    cpu_avg_samples 2
    net_avg_samples 2
    
    
    override_utf8_locale yes
    
    
    double_buffer yes
    no_buffers yes
    
    
    text_buffer_size 2048
    #imlib_cache_size 0
    
    
    temperature_unit celsius
    
    
    # Window specifications #
    own_window_class Conky
    own_window yes
    own_window_type override
    own_window_transparent yes
    own_window_hints undecorate,sticky,skip_taskbar,skip_pager,below
    
    
    border_inner_margin 0
    border_outer_margin 0
    
    
    minimum_size 250 700
    maximum_width 900
    
    
    alignment tl
    gap_x 40
    gap_y 55
    
    
    # Graphics settings #
    draw_shades yes
    draw_outline no
    draw_borders no
    draw_graph_borders no
    
    
    # Text settings #
    use_xft yes
    override_utf8_locale yes
    xftfont Ubuntu Titling:size=10
    xftalpha 0.8
    uppercase no
    
    
    temperature_unit celsius
    
    
    default_color FFFFFF
    
    
    # Lua Load  #
    lua_load ~/.conky/rings-v1.2.1.lua
    lua_draw_hook_pre ring_stats
    
    
    TEXT
    ${voffset 10}${font Ubuntu Titling:size=42}${time %e}
    ${goto 60}${font Ubuntu Titling:size=18}${color ff6407}${voffset -45}${time %b}
    ${alignr}${font Ubuntu Titling:size=15}${voffset -25}${color FFFFFF}${time %Y}
    ${font Ubuntu Titling:size=10}${color ff6407}${voffset 5}${time %A}${color ff6407}${hr}
    ${voffset 10}${font Ubuntu Titling:size=11}${color ff6407}HOME${font}${font Ubuntu Titling:size=13}${color FFFFFF}${alignr}${weather http://weather.noaa.gov/pub/data/observations/metar/stations/ MKJP temperature temperature 30} °C${font}
    ${font Ubuntu Titling:size=30}${voffset 18}${alignc}${time %H}:${time %M}
    ${goto 175}${voffset -60}${font Ubuntu Titling:size=10}${time %S}
    ${color ff6407}${font Ubuntu Titling:size=15,weight:bold}${voffset 30}Info ${font}${color FFFFFF}${voffset 5}${hr 2}
    ${image ~/.conky/ubuntu_logo.png -p 145,10 -s 100x24}
    
    
    
    
    ${color ff6407}${font Ubuntu Titling:size=13,weight:bold}${voffset -20}${alignr 45}CPU ${font}
    ${font Ubuntu Titling:size=13,weight:bold}${color FFFFFF}${voffset 5}${goto 123}${alignr 24}${cpu cpu0}% ${font}
    ${font Ubuntu Titling:size=9}${voffset -50}${pre_exec cat /proc/cpuinfo | grep 'model name' | sort -u | cut -c14-33,44-60}
    ${font Ubuntu Titling:size=9}Temperature: ${acpitemp}° C 
    ${font Ubuntu Titling:size=9}Top CPU Running Process:
    ${offset 10}${font Ubuntu Titling:size=9:style:bold}${color ac5c1c}${top name 1}${top cpu 1}${font}
    ${offset 10}${font Ubuntu Titling:size=8}${color lightgrey}${top name 2}${top cpu 2}
    ${offset 10}${font Ubuntu Titling:size=8}${color lightgrey}${top name 3}${top cpu 3}
    
    
    ${color ff6407}${font Ubuntu Titling:size=13,weight:bold}${voffset 24}${alignr 45}RAM ${font}
    ${font Ubuntu Titling:size=13,weight:bold}${color FFFFFF}${voffset 5}${goto 123}${alignr 24}${memperc}%${font}
    ${font Ubuntu Titling:size=9}${voffset -48}Uptime: ${uptime_short}
    ${font Ubuntu Titling:size=9}Processes: ${processes}
    ${font Ubuntu Titling:size=9}Running: ${running_processes}${font}
    ${font Ubuntu Titling:size=9}Top RAM Running Process:
    ${offset 10}${font Ubuntu Titling:size=9:style:bold}${color ac5c1c}${top name 1}${top_mem mem 1}${font}
    ${offset 10}${font Ubuntu Titling:size=8}${color lightgrey}${top name 2}${top_mem mem 2}
    ${offset 10}${font Ubuntu Titling:size=8}${color lightgrey}${top name 3}${top_mem mem 3}
    
    
    ${color ff6407}${font Ubuntu Titling:size=13,weight:bold}${voffset 10}${alignr 45}Disk ${font}
    ${font Ubuntu Titling:size=13,weight:bold}${color FFFFFF}${voffset 2}${goto 123}${alignr 24}${fs_used_perc /}%${font}
    ${font Ubuntu Titling:size=9,weight:bold}${voffset -40}Root: ${color ac5c1c}${fs_used /} ${color FFFFFF}/${fs_size /}
    ${font Ubuntu Titling:size=9,weight:bold}Home: ${color ac5c1c}${fs_used /home/} ${color FFFFFF}/${fs_size /home/}
    ${font Ubuntu Titling:size=9,weight:bold}Cache ${cached}
    
    
    ${color ff6407}${font Ubuntu Titling:size=13,weight:bold}${voffset 36}${alignr 45}Net ${font}
    ${font Ubuntu Titling:size=8,weight:bold}${color FFFFFF}${alignr 50}${downspeed eth0}${font}
    ${font Ubuntu Titling:size=8,weight:bold}${color FFFFFF}${alignr 50}${upspeed eth0}${font}
    ${font Ubuntu Titling:size=8,weight:bold}${voffset -40}Network IP: ${addr eth0}${font} 
    ${font Ubuntu Titling:size=8,weight:bold}${voffset -2}Pubblic IP: ${exec wget -q -O - checkip.dyndns.org | sed -e 's/[^[:digit:]|.]//g'}${font}
    ${font Ubuntu Titling:size=8,weight:bold}${voffset -2}Download: ${totaldown eth0}${font}
    ${font Ubuntu Titling:size=8,weight:bold}${voffset -2}Upload: ${totalup eth0}${font}
    ${color ff6407}${font Ubuntu Titling:size=13,weight:bold}${voffset 35}${alignr 45}Swap ${font}
    ${font Ubuntu Titling:size=13,weight:bold}${color FFFFFF}${voffset 1}${goto 123}${alignr 26}${swapperc}% ${font}
    
    
    
    
    ${color ff6407}${font Ubuntu Titling:size=15,weight:bold}System ${font}${color FFFFFF}${voffset 5}${hr 2}
    
    
    ${color ff6407}${font Ubuntu Titling:size=10}${alignr}${nodename}
    ${color ff6407}${font Ubuntu Titling:size=10}${alignr}${pre_exec cat /etc/issue.net}  $machine
    ${color ff6407}${font Ubuntu Titling:size=10}${alignr}Kernel: ${kernel}
    
    
    ${color ff6407}${font Ubuntu Titling:size=15,weight:bold}GPU ${font}${color FFFFFF}${voffset 5}${hr 2}
    
    
    ${alignr}${color ff6407}${font Ubuntu Titling:size=10}nVIDIA GeForce ENGT 440 1024 MB
    ${voffset 10}${color}+${nvidia temp}° C ${font}${alignr}Temp
    @${nvidia gpufreq}${alignr} Freq
    ${nvidia memfreq}${alignr}MemFreq
    
    
    ${font Ubuntu Titling:size=9,weight:bold}Porte aperte ${hr 1}
    ${font Ubuntu Titling:size=8,weight:bold}${offset 10}IP${alignr}DPORT
    ${font Ubuntu Titling:size=8,weight:normal}${color lightgrey}${tcp_portmon 1 65535 rip  0}${font}${alignr 1}${color FFFFFF}${tcp_portmon 1 65535 rport  0}
    ${font Ubuntu Titling:size=8,weight:normal}${color lightgrey}${tcp_portmon 1 65535 rip  1}${font}${alignr 1}${color FFFFFF}${tcp_portmon 1 65535 rport  1}
    ${font Ubuntu Titling:size=8,weight:normal}${color lightgrey}${tcp_portmon 1 65535 rip  2}${font}${alignr 1}${color FFFFFF}${tcp_portmon 1 65535 rport  2}
    Last edited by BJones007; October 9th, 2014 at 09:02 AM.
    Adapt. Evolve. Become

  9. #22969

    Re: Post your .conkyrc files w/ screenshots

    BJones: can you post that desktop image where I can get it?
    Not a screenshot, the image/graphic/background - Thanks.
    Windows assumes the user is an idiot.
    Linux demands proof.

  10. #22970
    Join Date
    Aug 2010
    Location
    Jamaica
    Beans
    103
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Habitual View Post
    BJones: can you post that desktop image where I can get it?
    Not a screenshot, the image/graphic/background - Thanks.
    Here you go http://imageshack.com/a/img910/6613/t5hOFP.jpg
    Adapt. Evolve. Become

Page 2297 of 2348 FirstFirst ... 129717972197224722872295229622972298229923072347 ... 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
  •