Page 112 of 2348 FirstFirst ... 12621021101111121131141221622126121112 ... LastLast
Results 1,111 to 1,120 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #1111
    Join Date
    Mar 2006
    Beans
    479
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: Post your .conkyrc files w/ screenshots

    Code:
    # conky configuration
    
    # set to yes if you want tormo to be forked in the background
    background yes
    
    # 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
    
    # Print everything to stdout?
    # out_to_console no
    
    # MPD host/port
    # mpd_host localhost
    # mpd_port 6600
    
    # Print everything to console?
    # out_to_console no
    
    # Xft font when Xft is enabled
    xftfont Sans:size=7
    
    # Text alpha when using Xft
    xftalpha 1
    
    # mail spool
    # mail_spool $MAIL
    
    # Update interval in seconds
    # update_interval 2
    
    # 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_type normal
    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
    
    # Minimum size of text area
    400 20
    # Draw shades?
    draw_shades no
    
    # Draw outlines?
    draw_outline yes
    
    # Draw borders around text
    draw_borders no
    
    # Stippled borders?
    stippled_borders 2
    
    # 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
    
    # Gap between borders of screen and text
    # same thing as passing -x at command line
    gap_x 2
    gap_y 2
    
    # Subtract file system buffers from used memory?
    no_buffers yes
    
    
    # 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 no
    
    TEXT
    ${pre_exec fortune -asu}
    ${time %e %h} :: ${mem}/${memmax} :: / ${fs_free_perc}% free :: ${loadavg 1} :: ${acpitemp}°C :: ${wireless_essid eth1} ${wireless_link_qual_perc eth1}${if_running rhythmbox} :: ${exec rhythmbox-client --print-playing}$endif
    Fairly minimal with a fresh fortune every time...
    Attached Images Attached Images
    Chuck Norris can restore a system from sudo rm -rf /.
    You can't.

  2. #1112
    Join Date
    Oct 2007
    Beans
    181

    Re: Post your .conkyrc files w/ screenshots

    Okay, here's something I'd like to fiddle with, but am unsure of how to go about it.

    I have a flash drive I use fairly regularly (referred to as SCOTT4GB, mount point /media/SCOTT4GB). However, I would like conky to detect other USB drives regardless of the name and to display their usage stats should I plug them in.

    The code I have now can only handle my single flash drive. It displays a %used stat and a disk usage graph if it is mounted, and simply displays "not mounted" should it not be there. Here is the code in question:

    Code:
    ${if_mounted /media/SCOTT4GB}  ${color white}usb   ${fs_free /media/SCOTT4GB} (${fs_free_perc /media/SCOTT4GB}%) ${color white}free of ${fs_size /media/SCOTT4GB}
           ${fs_bar /media/SCOTT4GB}${else}  usb   ${color #ff0000}not mounted${endif}
    Any ideas? Seems like it should be able to tell if something exists on the USB ports themselves, and if it is a drive of some type, then display usage stats. I just don't quite have a handle on the following things:
    - what the ports' (four of them) names would be,
    - where to begin on writing the code.


    I suppose if it gets too time-consuming, I can just as well leave it. It'd be a neat feature though.
    The views expressed in this post belong to Tristam Green and do not represent the views of any other entity, foreign or domestic, as long as you both shall live, Amen.
    OMG! Cheesecake! | Fuduntu - catch the fever!

  3. #1113
    Join Date
    Jan 2007
    Location
    Brighton, UK.
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by John.Michael.Kane View Post
    Thanks for those, I've been looking all over.

  4. #1114
    Join Date
    Nov 2007
    Location
    USA-ish
    Beans
    206
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Tristam Green View Post
    I have a flash drive I use fairly regularly (referred to as SCOTT4GB, mount point /media/SCOTT4GB). However, I would like conky to detect other USB drives regardless of the name and to display their usage stats should I plug them in.
    I had a problem with that too. I had my conky set up to show my flash drive stats along with my HDD stats, and it worked fine, until I ran conky from a terminal window and noticed that it would throw an error on each refresh when the flash drive wasn't plugged in. I also wouldn't mind it detecting my MP3 player.

    If you figure out how to do this, it looks like I'll have yet another thing to add to my conky.

  5. #1115
    Join Date
    Oct 2007
    Beans
    181

    Re: Post your .conkyrc files w/ screenshots

    the IF statement takes care of that, it just checks if_mounted /mountpoint. if "x named drive" is mounted, it displays. otherwise, it reads out "not mounted".

    tis a great feature, just only works for a single drive. I wish I could get it to work regardless of the drive name...

    Legend for the attached images:

    Utmost lower-left corner indicates USB drive status.

    If nothing is mounted, it displays "not mounted" in red letter. (image 1)

    If SCOTT4GB is mounted on /media/SCOTT4GB, usage stats display as normal. (image 2)

    If something ELSE is mounted in a usb slot, in this case /media/INTERN1, usb status indicates "not mounted". (image 3)

    I *could* solve this by writing an entry for each USB device I use, but if I used any new or different ones, they'd never show up.
    Attached Images Attached Images
    Last edited by Tristam Green; December 18th, 2007 at 04:36 PM.
    The views expressed in this post belong to Tristam Green and do not represent the views of any other entity, foreign or domestic, as long as you both shall live, Amen.
    OMG! Cheesecake! | Fuduntu - catch the fever!

  6. #1116
    Join Date
    Nov 2007
    Location
    USA-ish
    Beans
    206
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Tristam Green View Post
    the IF statement takes care of that, it just checks if_mounted /mountpoint. if "x named drive" is mounted, it displays. otherwise, it reads out "not mounted".
    That still throws an error in terminal when I have it open. Maybe that's normal, but it seems like the 'if' statement should stop the error.

  7. #1117
    Join Date
    Feb 2007
    Location
    Brampton, Ontario
    Beans
    883

    Question Re: Post your .conkyrc files w/ screenshots

    I would like to see the current week, horizontally, like so:

    Code:
    M17 T18 W19 T20 F21 S22 S23
    Or quite similar, with the current day highlighted. Can someone please help with this
    "For those who believe, no explanation is necessary. For those who do not, none will suffice." - Joseph Dunninger

  8. #1118
    Join Date
    Oct 2007
    Beans
    79
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Post your .conkyrc files w/ screenshots

    heres mine
    .corkyrc
    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 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 no
    
    # 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 arial
    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 20
    
    # stuff after 'TEXT' will be formatted on screen
    
    TEXT
    $color
    ${color orange}SYSTEM ${hr 2}$color
    $sysname $kernel on $machine
    ${time %a,}${time %e %B %G}                   ${time %I:%M:%S %P}
    ${color orange}CPU ${hr 2}$color
    ${freq}MHz   Load: ${loadavg}   Temp: ${acpitempf}F Fan: ${acpifan}
    $cpubar
    ${cpugraph 000000 ffffff}
    ${color orange}Mini Top ${hr 2}$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}
    
    ${color orange}System Temperatures ${hr 2}$color
    MB Temp: ${i2c 9191-0290 temp 2} C 
    Case Temp: ${i2c 9191-0290 temp 3} C
    Hard Drive SDA Temp: ${execi 300 nc localhost 7634 | cut -c23-24 ;} C
    Hard Drive SDB Temp: ${execi 300 nc localhost 7634 | cut -c50-51 ;} C
    
    ${color orange}MEMORY / DISK ${hr 2}$color
    RAM:   $memperc%   ${membar 6}$color
    Swap:  $swapperc%   ${swapbar 6}$color
    
    Root:  ${fs_free_perc /}%   ${fs_bar 6 /}$color 
    Home:  ${fs_free_perc /home}%   ${fs_bar 6 /home}$color
    Data:  ${fs_free_perc /media/sda1}%   ${fs_bar 6 /media/sda1}
    
    ${color orange}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}
    
    ${color orange}LOGGING ${hr 2}$color
    ${execi 30 tail -n3 /var/log/messages | fold -w50}
    
    $color$stippled_hr${if_running amarokapp}
    ${color}${alignc}Now Playing${color white}
    ${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} - ${color white}${alignc}${execi 10 ~/.conky/amarok genre}
    $color$stippled_hr
    ${alignc}Collection Information
    Artists: ${color white}${execi 10 ~/.conky/amarok totalArtists} $color${alignr}Compilations: ${color white}${execi 10 ~/.conky/amarok totalCompilations}$color
    Albums:  ${color white}${execi 10 ~/.conky/amarok totalAlbums} $color${alignr}Genres: ${color white}${execi 10 ~/.conky/amarok totalGenres}$color
    Tracks:  ${color white}${execi 10 ~/.conky/amarok totalTracks}
    ${color})$endif
    ${color orange}Weather ${hr 2}$color
    ${execi 60 /usr/bin/pymetar KCMI
    Attached Images Attached Images
    Registered Linux User #367849

  9. #1119
    Join Date
    Nov 2007
    Location
    USA-ish
    Beans
    206
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by whazooo View Post
    heres mine
    Your case temp is 1 deg C? That's pretty cold!

  10. #1120
    Join Date
    Feb 2007
    Location
    Brampton, Ontario
    Beans
    883

    Re: Post your .conkyrc files w/ screenshots

    Haven't changed mine in a while. The 4 partitions that are "NA" are my external USB sata.

    Code:
    double_buffer yes
    update_interval 1
    background yes
    
    own_window yes
    own_window_transparent yes
    own_window_type override
    #own_window_type root
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    
    
    use_xft yes
    override_utf8_locale no
    xftfont Dejavu Sans:size=9
    xftalpha 0.8
    draw_shades no
    draw_outline no
    draw_borders no
    uppercase no
    use_spacer no
    
    border_margin 0
    border_width 0
    
    default_color cdcdcd
    default_outline_color black
    
    alignment bottom_left
    gap_x 1920
    gap_y -5
    
    
    TEXT
    
         ${font HeldustryFTVBasic Demi:size=26}${color cdcdcd}cpu: ${color #ffffff}${cpu} ${color cdcdcd}mem: ${color #ffffff}${memperc}${voffset -57}
    ${offset 350}${font HeldustryFTVBasic Demi:size=10}${color #cdcdcd}processes: ${color #ffffff}$running_processes/$processes     ${color cdcdcd}down-${color #ffffff}${downspeed eth0}  ${color #cdcdcd}k/s up-${color #ffffff}${upspeed eth0}${color #cdcdcd}k/s
    ${offset 350}${color #ffffff}${execi 5 sensors | grep -A 0 'temp1' | cut -c15-16}${color #cdcdcd}C  ${color #ffffff}${execi 5 sensors | grep -A 0 'temp2' | cut -c15-16}${color #cdcdcd}C ${color #ffffff}${execi 300 nc localhost 7634 | cut -c31-32 ;}${color #cdcdcd}C  uptime: ${color ffffff}${uptime}${color #ffffff}  ${color cdcdcd}gmail - ${color #ffffff}${texeci 90 python /home/bobby/.conky/gmail.py}${voffset -32}
    ${offset 700}${color #cdcdcd}guitar ${color #ffffff} ${fs_free /mnt/guitar}     ${color #cdcdcd}mp3 ${color #ffffff}${fs_free /mnt/mp3}     ${color #cdcdcd}newpics ${color #ffffff}${fs_free /mnt/newpics}     ${color #cdcdcd}other ${color #ffffff}${fs_free /mnt/other}     ${color #cdcdcd}personal ${color #ffffff}${fs_free /mnt/personal}     ${color #cdcdcd}video ${color #ffffff}${fs_free /mnt/video}
    ${offset 700}${color cdcdcd}systembackup ${if_mounted /media/systembackup}${color ffffff}${fs_free /media/systembackup} $else${color ffffff}NA$endif          ${color cdcdcd}videobackup ${if_mounted /media/videobackup}${color ffffff}${fs_free /media/videobackup} $else ${color ffffff}NA$endif          ${color cdcdcd}newpicsbackup ${if_mounted /media/newpicsbackup}${color ffffff}${fs_free /media/newpicsbackup} $else${color ffffff}NA$endif          ${color cdcdcd}windrive ${if_mounted /media/WINDRIVE}${color ffffff}${fs_free /media/WINDRIVE} $else${color ffffff}NA$endif
    "For those who believe, no explanation is necessary. For those who do not, none will suffice." - Joseph Dunninger

Page 112 of 2348 FirstFirst ... 12621021101111121131141221622126121112 ... 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
  •