Page 29 of 2348 FirstFirst ... 19272829303139791295291029 ... LastLast
Results 281 to 290 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #281
    Join Date
    Apr 2007
    Location
    Nor Cal
    Beans
    201
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Post your .conkyrc files w/ screenshots

    No response to adding audacious to conky?
    Thank you for the help in advance. Gotta love the community with Ubuntu, its what keeps me coming back.

  2. #282
    Join Date
    Jan 2007
    Location
    London, UK
    Beans
    3,525
    Distro
    Ubuntu Development Release

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Robert98374 View Post
    No response to adding audacious to conky?
    I dont use it so can't comment
    You came empty handed, that is how you shall leave. Whatever you claim as yours today, belonged to someone else yesterday, will be someone else's tomorrow.

  3. #283
    Join Date
    Jan 2006
    Location
    Philadelphia
    Beans
    4,076
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Robert98374 View Post
    No response to adding audacious to conky?
    you don't need a fancy script to do audacious. conky comes with some built in variables. here's the relevant excerpt from "man conky":

    Code:
           audacious_bar (height),(width)
                  Progress bar
    
           audacious_bitrate
                  Bitrate of current tune
    
           audacious_channels
                  Number of audio channels of current tune
    
           audacious_filename
                  Full path and filename of current tune
    
           audacious_frequency
                  Sampling frequency of current tune
    
           audacious_length
                  Total length of current tune as MM:SS
    
           audacious_length_seconds
                  Total length of current tune in seconds
    
           audacious_playlist_position
                  Playlist position of current tune
    
           audacious_playlist_length
                  Number of tunes in playlist
    
           audacious_position
                  Position of current tune (MM:SS)
    
           audacious_position_seconds
                  Position of current tune in seconds
    
           audacious_status
                  Player status (Playing/Paused/Stopped/Not running)
    
           audacious_title (max length)
                  Title of current tune with optional maximum length specifier
    so, just put those variables into your TEXT section, wherever you want, and there you have it.

  4. #284
    Join Date
    Feb 2007
    Location
    Cincinnati, OH
    Beans
    1,433

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Robert98374 View Post
    No response to adding audacious to conky?
    Be sure to enable audacious when you compile conky, there is an alternative if you don't want to compile conky. Here is a link to the thread w/ the alternative called audtool which you can install through synaptic by installing the dev package for audacious I believe. Hope it helps. =]
    Quote Originally Posted by *snip*
    I love it when people stop trying to help me and I just uninstall ubuntu because of it . . .

  5. #285
    Join Date
    Dec 2005
    Location
    Kingston, Ontario
    Beans
    1,919
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Post your .conkyrc files w/ screenshots

    Is it possible to...do math with Conky? I'm trying to have a countdown to a certain date, how would that be done?

  6. #286
    Join Date
    Jul 2005
    Location
    2 exits past crazy
    Beans
    4,222
    Distro
    Lubuntu 12.10 Quantal Quetzal

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by ~LoKe View Post
    Is it possible to...do math with Conky? I'm trying to have a countdown to a certain date, how would that be done?
    Do the math in a shell script and then either execi or texeci the script.

  7. #287
    Join Date
    Apr 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Mine .conkyrc is copied from many places; it is simple, one line down.

    Here's the screenshot:


    EDIT - a better look may be found here: http://bp1.blogger.com/_KzHJTfJ1Aro/...1600-h/scr.jpg

    Here's the code:
    Code:
    background yes
    double_buffer yes
    use_spacer yes
    use_xft yes
    xftfont Bitstream Vera Sans:size=9
    xftalpha 0.8
    update_interval 30.0
    own_window yes
    own_window_type override
    own_window_transparent yes
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    default_color grey
    own_window_colour brown
    double_buffer yes
    draw_shades no
    draw_borders no
    draw_outline yes
    stippled_borders no
    border_margin 0
    border_width 1
    alignment bottom_left
    minimum_size 1262
    gap_x 9
    gap_y 9
    uppercase yes
    
    TEXT
    ${color darkgrey}Uptime:${color white}$uptime ${color}|${color} ${color darkgrey}Battery time:${color white}${battery_time} ${color}|${color} ${color darkgrey}Temp.(C):${color white}${acpitemp} ${color}|${color} ${color darkgrey}System load (1m., 5m., 15m.):${color white}${loadavg} ${color}|${color} ${color darkgrey} Date:${color white}${time %e %m %G} ${color}|${color} 
    ${color}
    Last edited by cdiem; June 21st, 2007 at 12:55 PM.

  8. #288
    Join Date
    Jan 2006
    Location
    Philadelphia
    Beans
    4,076
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by ~LoKe View Post
    Is it possible to...do math with Conky? I'm trying to have a countdown to a certain date, how would that be done?
    try it with python:
    Code:
    #!/usr/bin/python
    import datetime
    diff = datetime.datetime(2007, 7, 21) - datetime.datetime.today()
    print diff.days,
    (instead of 2007.7.21, insert your target date)

    then run that script from conky.

  9. #289
    Join Date
    Jan 2007
    Location
    London, UK
    Beans
    3,525
    Distro
    Ubuntu Development Release

    Lightbulb Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by nanotube View Post
    try it with python:
    Code:
    #!/usr/bin/python
    import datetime
    diff = datetime.datetime(2007, 7, 21) - datetime.datetime.today()
    print diff.days,
    (instead of 2007.7.21, insert your target date)

    then run that script from conky.
    once you have created above script in python as shown by nanotube, save script as /home/yourusername/.countdown.py

    Just add following line to your conkyrc script to update it every day:

    Code:
    ${execi 86400 python /home/yourusername/.countdown.py}
    restart your conky! Voila

    Note: this is tried and tested by me.
    You came empty handed, that is how you shall leave. Whatever you claim as yours today, belonged to someone else yesterday, will be someone else's tomorrow.

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

    Re: Post your .conkyrc files w/ screenshots

    I am wondering, I just ran GParted and I have my conky displaying my free space on each partition, but GParted shows a pretty different number from conky. In conky it showed one of my partitions to have 184gb/270gb free, but in GParted it shows 197gb/264gb free. What is with the big difference ??
    "For those who believe, no explanation is necessary. For those who do not, none will suffice." - Joseph Dunninger

Page 29 of 2348 FirstFirst ... 19272829303139791295291029 ... 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
  •