Page 2322 of 2348 FirstFirst ... 13221822222222722312232023212322232323242332 ... LastLast
Results 23,211 to 23,220 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #23211
    Join Date
    Apr 2015
    Beans
    37

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by tad1073 View Post
    Bump
    I think we need some screen shots, and a lot more info on your setup. You were trying things out before, and I'm just not sure what is going on. I have a picture in my head, but I'm doubtful I'm even close.

    I really wish some more experienced people were available to help you more. I'm rusty on a lot of this. BUT DO NOT GIVE UP!

  2. #23212
    Join Date
    Oct 2015
    Beans
    0

    Re: Post your .conkyrc files w/ screenshots

    I'm new to Corky and I'm not sure exactly what I'm doing but I got it installed (Fedora 22, not sure if that matters) and once I run it I get just a small snippet of the default corky.conf to show.
    How do I get it to expand larger then it currently is?
    If I edit
    Code:
    gap_y 60
    to
    Code:
    gap_y 400
    It shows a bit more but it also moves it down along the y axis.

    How can I get it to just show the full sized document?

    Thanks!

    Code:
    # Conky, a system monitor, based on torsmo
    #
    # Any original torsmo code is licensed under the BSD license
    #
    # All code written since the fork of torsmo is licensed under the GPL
    #
    # Please see COPYING for details
    #
    # Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
    # Copyright (c) 2005-2012 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
    # All rights reserved.
    #
    # This program is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    # GNU General Public License for more details.
    # You should have received a copy of the GNU General Public License
    # along with this program.  If not, see <http://www.gnu.org/licenses/>.
    #
    
    alignment top_left
    background no
    border_width 1
    cpu_avg_samples 2
    default_color white
    default_outline_color white
    default_shade_color white
    draw_borders no
    draw_graph_borders yes
    draw_outline no
    draw_shades no
    use_xft yes
    xftfont DejaVu Sans Mono:size=12
    gap_x 5
    gap_y 60
    minimum_size 5 5
    net_avg_samples 2
    no_buffers yes
    out_to_console no
    out_to_stderr no
    extra_newline no
    own_window yes
    own_window_class Conky
    own_window_type desktop
    stippled_borders 0
    update_interval 1.0
    uppercase no
    use_spacer none
    show_graph_scale no
    show_graph_range no
    
    TEXT
    ${scroll 16 $nodename - $sysname $kernel on $machine | }
    $hr
    ${color grey}Uptime:$color $uptime
    ${color grey}Frequency (in MHz):$color $freq
    ${color grey}Frequency (in GHz):$color $freq_g
    ${color grey}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
    ${color grey}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
    ${color grey}CPU Usage:$color $cpu% ${cpubar 4}
    ${color grey}Processes:$color $processes  ${color grey}Running:$color $running_processes
    $hr
    ${color grey}File systems:
     / $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
    ${color grey}Networking:
    Up:$color ${upspeed eth0} ${color grey} - Down:$color ${downspeed eth0}
    $hr
    ${color grey}Name              PID   CPU%   MEM%
    ${color lightgrey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
    ${color lightgrey} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
    ${color lightgrey} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
    ${color lightgrey} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
    Attached Images Attached Images

  3. #23213
    Join Date
    Aug 2014
    Beans
    Hidden!
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Post your .conkyrc files w/ screenshots

    Hi adedic,
    When you run the command "conky" it will use the config @ ~/.conkyrc (hidden text file in your home directory)
    If this config doesn't exist it will use the default config @ /etc/conky/conky.conf

    You can copy the default config to your home folder (symbolized by "~") for ease of editing.(don't need root permissions)
    Copy via terminal...
    Code:
    cp /etc/conky/conky.conf ~/.conkyrc
    or copy other peoples configs to ~/.conkyrc

    Once you have copied the default config you can then open in terminal with your text editor.
    eg I use gedit...
    Code:
    gedit ~/.conkyrc
    Look for the line...
    Code:
    own_window_type desktop
    and change to
    Code:
    own_window_type normal
    When using "own_window_type normal" you need to specify "own_window_hints".
    Also add this to your config to get rid of window decorations.
    Your section of config would look like this...
    Code:
    own_window_type normal
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    Adjusting your x and y values should now work.

    Make use of the manual pages.
    In terminal...
    Code:
    man conky
    Online... conky manpage

    If you edit your conky config while conky is running it's a good idea to reload
    with the command....
    Code:
    killall -SIGUSR1 conky
    Last edited by CantankRus; October 18th, 2015 at 02:34 AM.

  4. #23214
    Join Date
    Sep 2015
    Beans
    0

    Re: Post your .conkyrc files w/ screenshots

    Code:
       # — SETTINGS — #
    background no
    update_interval 1
    cpu_avg_samples 2
    net_avg_samples 2
    double_buffer yes
    no_buffers yes
    text_buffer_size 1024
    
    # — WINDOW — #
    own_window yes
    own_window_type normal
    own_window_transparent yes
    own_window_colour 000000
    own_window_hints undecorate,sticky,skip_taskbar,skip_pager,below
    
    # — BORDER — #
    border_inner_margin 1
    border_outer_margin 1
    
    # — SIZE — #
    minimum_size 260 100
    maximum_width 290
    
    # — ALIGNMENT — #
    alignment top_right
    gap_x 5
    gap_y 100
    
    # — GRAPHIC — #
    draw_shades no
    draw_outline no
    draw_borders no
    draw_graph_borders no
    
    # — TEXT — #
    use_xft yes
    xftfont Liberation:size=10
    xftalpha 0.8
    uppercase no
    override_utf8_locale yes
    default_color fff
    
    # — LUA — #
    #lua_load 
    #lua_draw_hook_pre 
    
    # — Colors — #
    color1 C18C24
    color2 777
    
    own_window_argb_visual yes
    own_window_colour 000000
    own_window_argb_value 0
    TEXT
    ${font Orore:size=20}${color2}H${voffset -3}${font  Liberation:size=16}${color} Kernel: ${font  Liberation:size=15}${color1}${kernel}
    ${font Orore:size=20}${color2}A${voffset -3}${font  Liberation:size=16}${color} Uptime: ${font  Liberation:size=15}${color1}${uptime}
    
    # core
    ${font Orore:size=20}${color2}L${voffset -3}${font  Liberation:size=16}${color} CPU: ${font  Liberation:size=16}${color1}${cpu cpu0}${color2}${font  Liberation:size=16:bold}%${font}${voffset -8}${color1}${goto 10}${offset  175}${freq_g cpu}${color} GHz${voffset 9}${goto 10}${offset  145}${cpubar 3,125}
    ${voffset 4}${font Liberation:size=11.3}  Core 1 »»» ${goto 10}${offset 100}${cpubar cpu1 6,120}${color1} ${cpu cpu1}${color2}%
    ${voffset 4}${font Liberation:size=11.3}${color}  Core 2 »»» ${goto  10}${offset 100}${cpubar cpu2 6,120}${color1} ${cpu cpu2}${color2}%
    #${voffset 4}${font Liberation:size=11.3}${color}  Core 3 »»» ${goto  10}${offset 100}${cpubar cpu3 6,120}${color1} ${cpu cpu3}${color2}%
    #${voffset 4}${font Liberation:size=11.3}${color}  Core 4 »»» ${goto  10}${offset 100}${cpubar cpu4 6,120}${color1} ${cpu cpu4}${color2}%
    
    # ram
    ${voffset -3}${font Orore:size=20}M${voffset -3}${font  Liberation:size=16}${color} RAM: ${font  Liberation:size=16}${color1}${memperc}${color}${font  Liberation:size=16:bold}${color2}%${font}${voffset -8}${color1}${goto  10}${offset 185}${mem}${color}${voffset 9}${goto 10}${offset  165}${membar 3,105}${voffset -8}${color}
    ${voffset 12}${font Liberation:size=11.3}  Total Ram »»» ${color1}${memmax}
    
    # Разделы
    # Root:
    ${voffset -3}${font Orore:size=20}${color2}Q${voffset -3}${font  Liberation:size=16}${color} Root: ${font  Liberation:size=16}${color1}${fs_used_perc /}${color2}${font  Liberation:size=16:bold}%${font}${voffset -8}${color1}${goto 10}${offset  185}${fs_used /}${color}${voffset 9}${goto 10}${offset 165}${fs_bar  3,105 /}${voffset -8}${color}
    ${voffset 12}${font Liberation:size=11.3}  Total Disk »»» ${color1}${fs_size /}
    # Home:
    ${voffset -3}${font Orore:size=20}${color2}Q${voffset -3}${font  Liberation:size=16}${color} Home: ${font  Liberation:size=16}${color1}${fs_used_perc /home}${color2}${font  Liberation:size=16:bold}%${font}${voffset -8}${color1}${goto 10}${offset  185}${fs_used /home}${color}${voffset 9}${goto 10}${offset 165}${fs_bar  3,105 /home}${voffset -8}${color}
    ${voffset 12}${font Liberation:size=11.3}  Total Disk »»» ${color1}${fs_size /home}
    
    # process
    ${voffset -3}${font Orore:size=20}${color2}U${voffset -3}${font  Liberation:size=16}${color} Processes:${color1}${font  Liberation:size=12:bold}${alignr 21}Ram${alignr 8}CPU
    
      ${voffset -20}${color1}${font Liberation:size=11}${top name 1}${alignr 7}${top mem 1}${top cpu 1}${color}
      ${top name 2} ${alignr 7} ${top mem 2} ${top cpu 2}
      ${top name 3} ${alignr 7} ${top mem 3} ${top cpu 3}
      ${top name 4} ${alignr 7} ${top mem 4} ${top cpu 4}
      ${top name 5} ${alignr 7} ${top mem 5} ${top cpu 5}
      ${top name 6} ${alignr 7} ${top mem 6} ${top cpu 6}
      ${top name 7} ${alignr 7} ${top mem 7} ${top cpu 7}
    
    # Сеть
    ${voffset -3}${font Orore:size=20}${color2}Y${voffset -3}${font Liberation:size=16}${color} Network:${if_up wlan1}
      ${font Orore:size=20}I${font Liberation:size=11.3}${voffset  -5}${color} wlan1${goto 10}${offset 100} »»» ${alignr 7}${color1}${addr  wlan1}${color}
      ${voffset 5}${font Orore:size=20}K${font  Liberation:size=11.3}${voffset -5} ${upspeed wlan1}${font  Liberation:size=11.3}${goto 10}${offset 100} » ${goto 10}${offset 120}  Upload:${color1}${alignr 8}${totalup wlan1}${color}
      ${voffset 5}${font Orore:size=20}J${font  Liberation:size=11.3}${voffset -5} ${downspeed wlan1}${font  Liberation:size=11.3}${goto 10}${offset 100} » ${goto 10}${offset 120}  Donwload:${color1}${goto 10}${alignr 8}${totaldown wlan1}
    ${endif}
    
    # mail box
    ${voffset -3}${font Orore:size=20}${color2}y${voffset 3}${font  Liberation:size=12}${color}${goto 15}${offset 70} Yandex: ${goto  15}${offset 220}${execpi 60 ~/scripts/gmail_generic.py}
    
    clock
    
    use_xft yes
    xftfont 123:size=8
    xftalpha 0.1
    update_interval 1
    total_run_times 0
    
    own_window yes
    own_window_type normal
    own_window_transparent yes
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    own_window_colour 000000
    own_window_argb_visual yes
    own_window_argb_value 0
    
    double_buffer yes
    #minimum_size 250 5
    #maximum_width 500
    draw_shades no
    draw_outline no
    draw_borders no
    draw_graph_borders no
    default_color white
    default_shade_color red
    default_outline_color green
    alignment top_right
    gap_x 211
    gap_y 84
    no_buffers yes
    uppercase no
    cpu_avg_samples 2
    net_avg_samples 1
    override_utf8_locale yes
    use_spacer yes
    
    
    minimum_size 0 0
    TEXT
    ${voffset 10}${color EAEAEA}${font GE Inspira:razz:ixelsize=120}${time %H:%M}${font}${voffset -84}${offset 10}${color FFA300}${font GE Inspira:razz:ixelsize=42}${time %d} ${voffset -15}${color EAEAEA}${font GE Inspira:razz:ixelsize=22}${time  %B} ${time %Y}${font}${voffset 24}${font GE Inspira:razz:ixelsize=58}${offset -148}${time %A}${font}
    Mine

  5. #23215
    Join Date
    Sep 2007
    Location
    Thurgoona, NSW, Australia
    Beans
    285
    Distro
    Ubuntu

    Re: Post your .conkyrc files w/ screenshots

    OK, I'll bite - can we see a screenshot please?
    Cheers!

  6. #23216
    Join Date
    Jun 2015
    Beans
    1

    Re: Post your .conkyrc files w/ screenshots

    Here's my conky, found out about it today and decided to play around with it. It's a spin off the infinity theme

    Code:
    # Conky settings #
    background yes
    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 fahrenheit
    
    # Window specifications #
    
    own_window yes
    own_window_type dock
    own_window_argb_visual yes
    own_window_argb_value 0
    own_window_hints undecorate,sticky,skip_taskbar,skip_pager,below
    
    border_inner_margin 0
    border_outer_margin 0
    
    ## This Resolution is set according to the sreen resolution of 1366x768 
    ## Adjust Accoring to yours
    
    minimum_size 900 1080
    maximum_width 1920
    
    alignment tr
    gap_x 50
    gap_y 25
    
    # Graphics settings #
    draw_shades no
    draw_outline no
    draw_borders no
    draw_graph_borders no
    
    # Text settings #
    use_xft yes
    xftfont caviar dreams:size=8
    xftalpha 0.5
    
    uppercase no
    
    temperature_unit celsius
    
    
    default_color FFA300
    
    # Lua Load  #
    lua_load ~/.lua/scripts/haunted.lua
    lua_draw_hook_pre clock_rings
    lua_load ~/.lua/scripts/mounted.lua
    ## first lua command below text:
    ## ${lua get_mounted_data interval}, where interval is a number.  This starts data gathering
    ## to get output:
    ## ${lua mount partition_number data_type}, where partition number is a number
    ## data_type can be
    ## total - shows total number of partitions mounted, requires a partition_number also, use 1, could be used in an if_match
    ## fsys - shows filesystem
    ## size - shows space used in appropriate units
    ## free - shows free space in appropriate units
    ## use% - shows % used
    ## mount - shows mountpoint
    
    ## Adjust these fields according to the your screen size i have modded them for 1366X768
    
    TEXT
    ${lua get_mounted_data 5}
     ${offset 290}${color FFA300}${font GE Inspira:pixelsize=120}${time %H:%M}${font}${voffset -84}${voffset 10}${color FFA300}${font GE Inspira:pixelsize=42}${time %d} ${voffset -15}${color FFA300}${font GE Inspira:pixelsize=22}${time  %B} ${time %Y}${font}${voffset 124}${font GE Inspira:pixelsize=58}${offset -575}${time %A}${font}
    ${offset 300}${voffset -95}${font Ubuntu:pixelsize=10}${color FFA300}HD ${offset 9}${color 6c6c6c}${fs_free /} / ${fs_size /}${offset 30}${color FFA300}RAM ${offset 9}${color 6c6c6c}$mem / $memmax${offset 30}${color FFA300}CPU ${offset 9}${color 6c6c6c}${cpu cpu0}%
    ${voffset 15}${offset 270}${color 2c2c2c}${hr 4}
    ${image ~/.conky/rev-eng.png}
    
    ${offset 130}${voffset 502}${color FFA300}${font Santana:size=9:style=Bold}TOTAL PARTITIONS MOUNTED: ${lua mount 1 total}
    ${offset 130}${voffset 29}${color FFA300}${font Santana:size=9:style=Bold}Root: ${color 6c6c6c}${font Santana:size=9}${lua mount 1 used} / ${lua mount 1 size}$font
    ${offset 130}${voffset 13}${color FFA300}${font Santana:size=9:style=Bold}Windows: ${color 6c6c6c}${font Santana:size=9}${lua mount 3 used} / ${lua mount 3 size}$font
    ${offset 130}${voffset 13}${color FFA300}${font Santana:size=9:style=Bold}swap: ${color 6c6c6c}${font Santana:size=9} ${swap} / ${swapfree}$font
    ${if_match ${lua mount 1 total}>=4}${offset 130}${voffset 16}${color FFA300}${font Santana:size=9:style=Bold}${lua mount 4 mount}: ${color 6c6c6c}${font Santana:size=9}${lua mount 4 used} / ${lua mount 4 size}$font${else}${offset 130}${voffset 16}${color 6c6c6c}${font Santana:size=9:style}Nothing Mounted$font${endif}
    ${offset 100}${voffset 84}${color FFA300}${font Santana:size=9:style=Bold}OTHER DRIVES:
    ${if_match ${lua mount 1 total}>=5}${offset 100}${voffset 2}${color FFA300}${font Santana:size=9:style=Bold}${lua mount 5 mount}: ${color 6c6c6c}${font Santana:size=9}${lua mount 5 used} / ${lua mount 5 size}$font${else}${offset 100}${voffset 0}${color 6c6c6c}${font Santana:size=9:style}Nothing Mounted$font${endif}
    ${if_match ${lua mount 1 total}>=6}${offset 100}${voffset 0}${color FFA300}${font Santana:size=9:style=Bold}${lua mount 6 mount}: ${color 6c6c6c}${font Santana:size=9}${lua mount 6 used} / ${lua mount 6 size}$font${else}${offset 100}${voffset 0}${color 6c6c6c}${font Santana:size=9:style}Nothing Mounted$font${endif}
    ${if_match ${lua mount 1 total}>=7}${offset 100}${voffset 0}${color FFA300}${font Santana:size=9:style=Bold}${lua mount 7 mount}: ${color 6c6c6c}${font Santana:size=9}${lua mount 7 used} / ${lua mount 7 size}$font${else}${offset 100}${voffset 0}${color 6c6c6c}${font Santana:size=9}Nothing Mounted$font${endif}
    ${offset 570}${voffset -237}${color FFA300}Ubuntu ${kernel} kernel
    ${offset 570}${voffset 7} Uptime :${uptime}
    ${offset 827}${voffset -80}${color FFA300}${font Santana:size=9:style=Bold}${exec whoami}@${nodename}
    ${offset 827}${voffset 0}${color FFA300}${font Santana:size=8}Name:        CPU%      MEM%
    ${offset 827}${voffset 0}${color FFA355}${font Santana:size=8}${top name 1} ${top cpu 1} ${top mem 1}
    ${offset 827}${voffset 0}${color FFA300}${font Santana:size=8}${top name 2} ${top cpu 1} ${top mem 2}
    ${offset 827}${voffset 0}${color FFA300}${font Santana:size=8}${top name 3} ${top cpu 1} ${top mem 3}
    ${offset 827}${voffset 0}${color FFA300}${font Santana:size=8}${top name 4} ${top cpu 1} ${top mem 4}
    ${offset 827}${voffset 0}${color FFA300}${font Santana:size=8}${top name 5} ${top cpu 1} ${top mem 5}
    ${offset 685}${voffset 90}${color FFA300}${font Santana:size=8:style=Bold}IP Address: ${font Santana:size=8}${addr wlan1}
    ${offset 708}${voffset 10}${color FFA300}${font Santana:size=8:style=Bold}Down: ${font Santana:size=8}${downspeed wlan1} k/s ${offset 8}Up:${upspeed wlan1} k/s
    ${offset 708}${voffset 10}${color FFA300}${font Santana:size=8:style=Bold}TCP Connections: ${font Santana:size=8}${tcp_portmon 1 65535 count}
    ${offset 685}${voffset 10}${color FFA300}${font Santana:size=8:style=Bold}Speed Graph :
    ${offset 685}${voffset 0}${color FFA300}${font Santana:size=8}${color FFA300}${downspeedgraph wlan1 32,150 FFA300 FFA399} ${color FFA3000}${upspeedgraph wlan1 32,150 FFA300 FFA399}
    I know I can clean the code up a lot.
    I'm running two lua scripts, one to work the hands of the clock and draw the circles. An another to grab all the mounting info and have conky update it live and show when I mount/unmount a usb drive.
    Attached Images Attached Images

  7. #23217
    Join Date
    Jul 2008
    Location
    The Left Coast of the USA
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Post your .conkyrc files w/ screenshots

    Simple and clean:

    conky.jpg


    A couple of things in here that will obviously be different for others, such as getting the GPU information and a script I wrote to correct the AMD CPU temperature.

    Code:
    ####
    #  Conky config file
    ####
    
    ####
    #  general startup settings
    ####
    background yes
    update_interval 1.0
    text_buffer_size 1024
    total_run_times 0
    alignment top_right
    gap_x 35
    gap_y 45
    minimum_size 250 850
    maximum_width 250
    
    ####
    #  Some window setup
    ####
    own_window_class Conky
    own_window yes
    own_window_type normal
    own_window_argb_visual yes
    own_window_transparent no
    own_window_argb_value 0
    own_window_hints below,skip_pager,skip_taskbar,undecorated,sticky
    background yes
    
    ####
    # font defaults:
    ####
    use_xft yes
    xftfont Liberation Mono:italic:size=10
    xftalpha 0.9
    override_utf8_locale yes
    
    ####
    # images, buffering, shading
    ####
    imlib_cache_size 60
    double_buffer yes
    draw_shades no
    
    ####
    # misc text formatting
    ####
    short_units yes
    pad_percents 2
    border_inner_margin 0
    uppercase no
    use_spacer right
    
    ####
    # outlines and borders
    ####
    draw_outline no
    draw_borders no
    draw_graph_borders no
    border_width 0
    color3 54FFFF
    
    ####
    # stdout/console printing
    ####
    out_to_ncurses no
    out_to_console no
    
    ####
    ## process settings
    ####
    top_name_width 4
    
    ####
    # sampling
    ####
    cpu_avg_samples 2
    net_avg_samples 2
    
    ####
    # hddtemp IP and port
    ####
    #INTERFACE="127.0.0.1"
    #PORT="7634"
    
    #### end config
    
    ####
    #  draw the nice background with radiused corners
    ####
    #commented out since it's on very dark background at the moment
    #lua_load /home/noyb/.conky/draw_bg.lua
    #lua_draw_hook_pre conky_draw_bg
    
    ####
    ## everything below 'TEXT' is drawn on screen
    ####
         
    TEXT
    ####
    #  Headers
    ####
    ${voffset 0}${goto 25}${color3}${font Liberation Mono:italic:size=28}${pre_exec}${nodename}
    ${voffset -18}${goto 25}${color3}${font Liberation Mono:italic:size=10}${pre_exec}${kernel}
    #${voffset 2}${goto 25}${color3}${font Liberation Mono:italic:size=10}${goto 85}${time %D}${alignr 30}${time    %H:%M:%S}
    ${voffset 0}${goto 25}${color3}${font Liberation Mono:italic:size=10}${pre_exec}Up  ${font Liberation Mono:italic:size=10}${uptime}
    ####
    #  Date and Time
    ####
    ${voffset 10}${goto 25}${color3}${font Liberation Mono:italic:size=10}${time %A}
    ${voffset 0}${goto 25}${color3}${font Liberation Mono:italic:size=10}${time %B %d, %G}
    ${voffset 0}${goto 25}${color3}${font Liberation Mono:italic:size=20}${time    %H:%M:%S}
    ####
    #  Core loads
    ####
    ${voffset 10}${goto 25}${color3}${font Liberation Mono:italic:size=11}${pre_exec}CPU - ${pre_exec}${execi 1000 cat /proc/cpuinfo | grep 'model name' | cut -c 14-28 | uniq}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}CPU${alignr 40}${cpu perc}%${alignr 30}${color3}${cpugraph cpu0 15,80}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}Core 1${alignr 40}${cpu cpu1 perc}%${alignr 30}${color yellow}${cpugraph cpu1 15,80}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}Core 2${alignr 40}${cpu cpu2 perc}%${alignr 30}${color3}${cpugraph cpu2 15,80}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}Core 3${alignr 40}${cpu cpu3 perc}%${alignr 30}${color yellow}${cpugraph cpu3 15,80}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}Core 4${alignr 40}${cpu cpu4 perc}%${alignr 30}${color3}${cpugraph cpu4 15,80}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}Core 5${alignr 40}${cpu cpu5 perc}%${alignr 30}${color yellow}${cpugraph cpu5 15,80}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}Core 6${alignr 40}${cpu cpu6 perc}%${alignr 30}${color3}${cpugraph cpu6 15,80}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}Core 7${alignr 40}${cpu cpu7 perc}%${alignr 30}${color yellow}${cpugraph cpu7 15,80}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}Core 8${alignr 40}${cpu cpu8 perc}%${alignr 30}${color3}${cpugraph cpu8 15,80}
    ${voffset 5}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}CPU Watts${alignr 40}${execi 1 sensors fam15h_power-pci-00c4 | grep 'power1' | awk '{print $2}' | cut -c1-6}W
    ####
    #  Memory
    ####
    ${voffset 15}${goto 25}${color3}${font Liberation Mono:italic:size=11}${pre_exec}MEMORY
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${mem}${alignr 40}${memperc}%${alignr 30}${memgraph 15,60}
    ####
    #  GPU loads
    ####
    ${voffset 15}${goto 25}${color3}${font Liberation Mono:italic:size=11}${pre_exec}GPU - ${pre_exec}${execi 1000 lspci | grep VGA | cut -c 86-99}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}Load${goto 85}${pre_exec}Temp${goto 150}${pre_exec}Fan speed
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${execi 1 aticonfig --odgc --odgt --adapter=0 | egrep -i "load|temperature" | xargs echo | awk '{print $4 "    " $9 "°C "}'}${alignr 30}${execi 1 amdconfig --pplib-cmd "get fanspeed 0" | grep -i result | awk '{print $4}'} 
    ####
    ## Temperatures
    ####
    ${voffset 15}${goto 25}${color3}${font Liberation Mono:italic:size=11}${pre_exec}TEMPERATURES
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}CPU${alignr 20}${execi 1 /home/noyb/.conky/temp_correct.sh}${pre_exec}°C    (Corrected)
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${alignr 20}${execi 1 sensors k10temp-pci-00c3 | grep 'temp1' | awk -F'.' '{print $1}'| awk -F'+' '{print $2}'}${pre_exec}°C      (k10temp)
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}SB${goto 80}${execi 1 sensors it8728-isa-0228 | grep 'temp2' | awk '{print $2}' | cut -c2-3}°C
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}VRM${goto 80}${execi 1 sensors it8728-isa-0228 | grep 'temp1' | awk '{print $2}' | cut -c2-3}°C
    ####
    #  Fans
    ####
    ${voffset 10}${goto 25}${color3}${font Liberation Mono:italic:size=11}${pre_exec}FANS
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}CPU${goto 95}${execi 1 sensors it8728-isa-0228 | grep 'fan1' | awk '{print $2}' | cut -c1-4}rpm
    ####
    #  Ethernet
    ####
    ${voffset 15}${goto 25}${color3}${font Liberation Mono:italic:size=11}${pre_exec}ETHERNET
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}Down ${alignr 70}${downspeed eth1}${goto 140}${pre_exec}Up${alignr 30}${upspeed eth1}
    ${voffset 0}${goto 35}${color3}${downspeedgraph eth1 20,80 000000 00FF00}${goto 140}${upspeedgraph eth1 20,80 000000 FFFF00}
    #${voffset 0}${color}Up: ${color3}${font Liberation Mono:italic:size=10}${upspeed eth0}
    #${voffset 0}${upspeedgraph eth1 20,130 000000 ffffff}
    ####
    #  Top
    ####
    ${voffset 10}${goto 25}${color3}${font Liberation Mono:italic:size=11}${pre_exec}TOP PROCESSES
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}CPU${goto 135}${pre_exec}MEM
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${top name 1}${goto 75}${top cpu 1}${goto 135}${top_mem name 1}${alignr 30}${top_mem mem 1}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${top name 2}${goto 75}${top cpu 2}${goto 135}${top_mem name 2}${alignr 30}${top_mem mem 2}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${top name 3}${goto 75}${top cpu 3}${goto 135}${top_mem name 3}${alignr 30}${top_mem mem 3}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${top name 4}${goto 75}${top cpu 4}${goto 135}${top_mem name 4}${alignr 30}${top_mem mem 4}
    ${voffset 0}${goto 35}${color3}${font Liberation Mono:italic:size=10}${top name 5}${goto 75}${top cpu 5}${goto 135}${top_mem name 5}${alignr 30}${top_mem mem 5}
    ####
    #  Disk Activity
    ####
    ${voffset 15}${goto 25}${color3}${font Liberation Mono:italic:size=11}${pre_exec}DISK ACTIVITY
    ${voffset 0}${goto 65}${color3}${font Liberation Mono:italic:size=10}${pre_exec}READ${goto 150}${pre_exec}WRITE
    ${voffset 10}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}sda
    ${voffset -20}${goto 65}${color3}${font Liberation Mono:italic:size=10}${diskiograph_read /dev/sda 20,70 000000 00FF00}${goto 150}${diskiograph_write /dev/sda 20,70 000000 FFFF00}
    ${voffset 10}${goto 35}${color3}${font Liberation Mono:italic:size=10}${pre_exec}sdb
    ${voffset -20}${goto 65}${color3}${font Liberation Mono:italic:size=10}${diskiograph_read /dev/sdb 20,70 000000 00FF00}${goto 150}${diskiograph_write /dev/sdb 20,70 000000 FFFF00}
    Please read The Forum Rules and The Forum Posting Guidelines

    A thing discovered and kept to oneself must be discovered time and again by others. A thing discovered and shared with others need be discovered only the once.
    This universe is crazy. I'm going back to my own.

  8. #23218
    Join Date
    May 2015
    Beans
    2

    TradersPit Conky



    Inspired by the Ranger spaceship consoles from the "Interstellar" movie.
    My conky (version 1.9.0-4) is tested only on a 4-Core Ubuntu 14.04 LTS system with two displays (1920*1080) and the Lightdm display manager.
    Updates and fixes will be published on the DeviantArt Page.
    You can download the zip File with the required files from my DeviantArt Page here: http://traderspit.deviantart.com/

  9. #23219
    Join Date
    Nov 2010
    Beans
    46
    Distro
    Ubuntu Gnome 15.04 Vivid Vervet

    Re: Post your .conkyrc files w/ screenshots

    Can I get this please?

  10. #23220
    Join Date
    Nov 2010
    Beans
    46
    Distro
    Ubuntu Gnome 15.04 Vivid Vervet

    My Conky

    Nothing fancy needed here except the basic conky install.

    Code:
    # Conky settings #
    background no
    update_interval 2.0
    total_run_times 0
    imlib_cache_size 0
    double_buffer yes
    no_buffers yes
    override_utf8_locale no
    
    # Window specifications #
    alignment top_right
    gap_x 5
    gap_y 35
    own_window yes
    own_window_transparent yes
    own_window_argb_visual yes
    own_window_type normal # other options are: override/dock/desktop/panel
    own_window_class conky-semi
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    minimum_size 300 200
    
    # Graphics settings #
    draw_shades no
    draw_outline no
    draw_borders no
    draw_graph_borders yes
    default_outline_color white
    default_bar_size 150 5
    default_gauge_size 20 20
    default_shade_color black
    draw_shades no
    
    # Text settings #
    use_xft yes
    xftalpha 0
    xftfont Droid Sans:size=10
    text_buffer_size 256
    override_utf8_locale yes
    
    # Color scheme #
    default_color ECEAE4
    color1 9f907d
    color2 01C400
    
    
    TEXT
    ${font AvantGardeLTMedium:bold:size=10}${color Tan1}Info 
    ${color1}Date               ${alignr}${color slate grey}${time %a,}${color}${time %e %B %G}
    ${color1}Time               ${alignr}${color}${time %T}
    ${color slate grey}${hr 2}${font}
    
    ${font AvantGardeLTMedium:bold:size=10}${color Tan1}System 
    ${color1}Hostname           ${alignr}${color}${nodename}
    ${color1}${sysname}         ${alignr}${color}${kernel}-${machine}
    ${color1}CPU                ${alignr}${color}${freq_g} GHz
    #${color1}Loadaverage        ${alignr}${color}${loadavg 1} ${loadavg 2} ${loadavg 3}
    ${color1}Uptime             ${alignr}${color}${uptime}
    ${color1}Cpu Temperature    ${alignr}${color}${acpitemp}C
    ${color slate grey}${hr 2}${font}
    
    ${font AvantGardeLTMedium:bold:size=10}${color Tan1}Processors 
    ${color1}Core 1             ${alignr}${color}${cpu cpu1}%  ${cpubar cpu1}
    ${color1}Core 2             ${alignr}${color}${cpu cpu2}%  ${cpubar cpu2}
    ${color1}Core 3             ${alignr}${color}${cpu cpu3}%  ${cpubar cpu3}
    ${color1}Core 4             ${alignr}${color}${cpu cpu4}%  ${cpubar cpu4}
    ${color1}Core 5             ${alignr}${color}${cpu cpu5}%  ${cpubar cpu5}
    ${color1}Core 6             ${alignr}${color}${cpu cpu6}%  ${cpubar cpu6}
    ${color1}Core 7             ${alignr}${color}${cpu cpu7}%  ${cpubar cpu7}
    ${color1}Core 8             ${alignr}${color}${cpu cpu8}%  ${cpubar cpu8}
    ${color1}Highest CPU $alignr CPU% MEM%
    ${color}${top name 1}$alignr${top cpu 1}${top mem 1}
    ${top name 2}$alignr${top cpu 2}${top mem 2}
    ${top name 3}$alignr${top cpu 3}${top mem 3}
    ${color slate grey}${hr 2}${font}
    
    ${font AvantGardeLTMedium:bold:size=10}${color Tan1}Memory 
    ${color1}Memory             ${color}${alignr}${memeasyfree} / ${memmax}
    ${color1}Currently          ${color}${alignr}${memperc}%   ${membar}
    ${color1}Highest MEM $alignr CPU% MEM%
    ${color}${top_mem name 1}$alignr${top_mem cpu 1}${top_mem mem 1}
    ${top_mem name 2}$alignr${top_mem cpu 2}${top_mem mem 2}
    ${top_mem name 3}$alignr${top_mem cpu 3}${top_mem mem 3}
    ${color slate grey}${hr 2}${font}
    
    ${font AvantGardeLTMedium:bold:size=10}${color Tan1}Filesystem 
    ${color1}/                  ${color}${alignc}${fs_used /} / ${fs_size /} ${color}${alignr}${fs_free_perc /}% free ${color}${fs_bar 5,150 /}
    ${color1}Swap:          ${color}${alignr}$swap/$swapmax $swapperc% ${swapbar}
    ${color slate grey}${hr 2}
    
    # Networking #
    ${font AvantGardeLTMedium:bold:size=10}${color Tan1}Networking 
    ${color1}Ip     ${color}${alignr}${addr enp4s0}
    ${color1}Download           ${alignr}${color}${downspeed enp4s0} ${downspeedgraph enp4s0 15,120}
    ${color1}Upload             ${alignr}${color}${upspeed enp4s0} ${upspeedgraph enp4s0 15,120}
    ${color1}Total Down/Up      ${alignr}${color}${totaldown enp4s0}${color1}/${color}${totalup enp4s0}
    ${color purple}${hr 0.5}
    ${color1}Outbound  - ${color}${tcp_portmon 32768 61000 count} ${alignr} ${color1}Remote Service/Port${color}
     ${tcp_portmon 32768 61000 rhost 0} ${alignr} ${tcp_portmon 32768 61000 rservice 0}
     ${tcp_portmon 32768 61000 rhost 1} ${alignr} ${tcp_portmon 32768 61000 rservice 1}
     ${tcp_portmon 32768 61000 rhost 2} ${alignr} ${tcp_portmon 32768 61000 rservice 2}
     ${tcp_portmon 32768 61000 rhost 3} ${alignr} ${tcp_portmon 32768 61000 rservice 3}
     ${tcp_portmon 32768 61000 rhost 4} ${alignr} ${tcp_portmon 32768 61000 rservice 4}
     ${tcp_portmon 32768 61000 rhost 5} ${alignr} ${tcp_portmon 32768 61000 rservice 5}
     ${tcp_portmon 32768 61000 rhost 6} ${alignr} ${tcp_portmon 32768 61000 rservice 6}
    ${color purple}${hr 0.5}
    ${color1}Inbound   - ${color}${tcp_portmon 1 32767 count} ${alignr} ${color1}Local Service/Port${color}
     ${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}
    Last edited by flitbee; January 11th, 2016 at 11:43 AM. Reason: New screenshot

Page 2322 of 2348 FirstFirst ... 13221822222222722312232023212322232323242332 ... 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
  •