Page 162 of 287 FirstFirst ... 62112152160161162163164172212262 ... LastLast
Results 1,611 to 1,620 of 2865

Thread: HOWTO: VinDSL Conky Script

  1. #1611
    Join Date
    Nov 2008
    Location
    Magdalena,New Mexico,USA
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: HOWTO: VinDSL Conky Script

    Quote Originally Posted by aquarius18 View Post
    Aye Piloto!
    Where would I pop that code? As command into Startup Apps?? Pardon my ignorance, in this regard I am like Schulz: "I know noffinggg!"

    Cheers / Frank
    do this...

    Code:
    sudo gedit /usr/share/conkywx/run-conkywx.sh
    open conky-restart.sh.....you can select from a number of different options.....

    Code:
    #!/bin/bash
    # -----------------------------------------------------------------------
    # Export path statements for use in *conky* config file
    # if you move this file else where then give the full path for WX_DIR variable
    # -----------------------------------------------------------------------
    # WX_DIR="/usr/share/conkywx"; export WX_DIR
    
    # -----------------------------------------------------------------------
    # stop existing conky processes
    # -----------------------------------------------------------------------
    # if [[ "$(pidof conky)" ]] ; then killall conky; fi
    
    # -----------------------------------------------------------------------
    # run conky instances
    # -----------------------------------------------------------------------
     conky -c ./examples/conky-system.sh &
    
    # conky -c ./examples/wx-wu-vindsl-conkyrc.sh &
    
    # conky -c ./examples/expanded-conkyrc.sh &
    
    # conky -c ./examples/short-conkyrc.sh &
    
    # sleep 1
    conky -c ./examples/lua-wx-test.sh &
    conky -c ./examples/short-02-conkyrc.sh &
    
    # conky -c ./examples/conkywx-now-conkyrc.sh &
    
    # conky -c ./examples/scroller-conkyrc.sh &
    
    # conky -c ./examples/slim-conkyrc.sh &
    
    
    exit
    as you can see, there 3 different conky's running....

    the sys monitor & 2 conkywx's....

    try them all until you find a favorite...

    tommy
    Registered Linux User # 529389
    Arch Linux, MX 18.3 Linux
    my personal web page http://users.gilanet.com/~tfrost
    "If you're not living on the edge, you're taking up too much space"--Unknown

  2. #1612
    Join Date
    Aug 2009
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: HOWTO: VinDSL Conky Script

    I guess I did it the hard way. When I had VinDSL's conky running and started up Paramvir's it killed VinDSL's. I could never get them both running at the same time either.

    What I did was create a script, cmod +x and chown root:root and put that in my startup commands.

    This is on Trusty.

    PHP Code:
    #!/bin/sh
    sleep 25
    /usr/share/conkywx/run-conkywx.sh
    sleep 20
    conky 
    -/home/cavsfan/.conkyrc.vindsl 
    It works everytime.

  3. #1613
    Join Date
    Aug 2009
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: HOWTO: VinDSL Conky Script

    Here's a screeny on Mint 13. I like the mint color - it matches.



    I was able to display 5 of the top running processes on Mint 13 and Precise but only 3 on Trusty Tahr for some reason.

    But, hey don't worry about it I think I'll be OK.

    Correction: Trusty displays 5 of the top running processes as well.
    Last edited by Cavsfan; April 22nd, 2014 at 04:13 PM. Reason: Correction

  4. #1614

    Cool Re: HOWTO: VinDSL Conky Script

    Quote Originally Posted by Cavsfan View Post
    I guess I did it the hard way. When I had VinDSL's conky running and started up Paramvir's it killed VinDSL's. I could never get them both running at the same time either.

    What I did was create a script, cmod +x and chown root:root and put that in my startup commands.

    This is on Trusty.

    PHP Code:
    #!/bin/sh
    sleep 25
    /usr/share/conkywx/run-conkywx.sh
    sleep 20
    conky 
    -/home/cavsfan/.conkyrc.vindsl 
    It works everytime.
    You really do not need those sleep commands unless you need time for your net to come up

    PHP Code:
    #!/bin/sh
    sleep 25
    /usr/share/conkywx/run-conkywx.sh &
    conky -/home/cavsfan/.conkyrc.vindsl 
    should work fine as well.

  5. #1615
    Join Date
    Dec 2009
    Location
    Sunny Coast, Australia
    Beans
    150
    Distro
    Ubuntu 14.10 Utopic Unicorn

    Re: HOWTO: VinDSL Conky Script

    Quote Originally Posted by paramvir View Post
    Ohla Amigo mio lol - have a look at my scripts

    Code:
    /usr/share/conkywx/run-conkywx.sh
    /usr/share/conkywx/conky-restart.sh
    basically you add the line(s) to a script file - make it executable and run it - it will start conky with the conkyrc files you give it with the -c option - it is soo simple - IF you know - other wise everything is like "I know noffinggg!"

    To make a file executable you could use the file manager and right click and select make it executable or something like dat ...

    You will see lines that kill conky and then start new instances of conky - there are other ways - mentioned earlier but they do not go well with arch linux. You will need to stop running instances of conky - otherwise you will have multiple instances running. Give us a shout if you need further info ...

    Njoy
    Gotcha - muchas gracias senor!
    Do You Ubuntu? I Do!
    The Network is Alive and Well

  6. #1616
    Join Date
    Aug 2009
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: HOWTO: VinDSL Conky Script

    Quote Originally Posted by paramvir View Post
    You really do not need those sleep commands unless you need time for your net to come up

    PHP Code:
    #!/bin/sh
    sleep 25
    /usr/share/conkywx/run-conkywx.sh &
    conky -/home/cavsfan/.conkyrc.vindsl 
    should work fine as well.
    I may need the extra delay. When I first started yours it was on top of anything on the screen. Which makes sense with no delay at all.
    Then with VinDSL's conky running I would start yours manually and it would kill VinDSL's.

    But I'll try it and let you know.

    As soon as I can that is.
    I have just VinDSL's conky running on Precise and Mint 13 which looks sweet and I have them all on Trusty. So, I might just use that extra room in VinDSL's conky to display something else.

    Gotta keep the brain massaged for sure!
    Last edited by Cavsfan; April 26th, 2014 at 09:48 PM. Reason: skelling

  7. #1617
    Join Date
    Jun 2012
    Beans
    37

    Re: HOWTO: VinDSL Conky Script


    Conkywx 2.0.0 +Windvane+serbian lang.Thanks Param!

  8. #1618
    Join Date
    Dec 2009
    Location
    Sunny Coast, Australia
    Beans
    150
    Distro
    Ubuntu 14.10 Utopic Unicorn

    Re: HOWTO: VinDSL Conky Script

    Thanks to all - NM5TF, Cavsfan and Paramvir - should be a breeze from here me thinks.

    And yep, Cavsfan hit the nail right on it's head: keep that brain massaged....

    Cheers again / Frank
    Do You Ubuntu? I Do!
    The Network is Alive and Well

  9. #1619
    Join Date
    Nov 2008
    Location
    Magdalena,New Mexico,USA
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: HOWTO: VinDSL Conky Script

    Quote Originally Posted by aquarius18 View Post
    Thanks to all - NM5TF, Cavsfan and Paramvir - should be a breeze from here me thinks.

    And yep, Cavsfan hit the nail right on it's head: keep that brain massaged....

    Cheers again / Frank
    no problem Mate....just follow the wiki, decide which apps work for you, move/re-size to
    your hearts content, easy-peasy 1,2,3 & Bob's your Uncle....

    tommy
    Registered Linux User # 529389
    Arch Linux, MX 18.3 Linux
    my personal web page http://users.gilanet.com/~tfrost
    "If you're not living on the edge, you're taking up too much space"--Unknown

  10. #1620
    Join Date
    Aug 2009
    Beans
    Hidden!
    Distro
    Xubuntu

    Re: HOWTO: VinDSL Conky Script

    Quote Originally Posted by paramvir View Post
    You really do not need those sleep commands unless you need time for your net to come up

    PHP Code:
    #!/bin/sh
    sleep 25
    /usr/share/conkywx/run-conkywx.sh &
    conky -/home/cavsfan/.conkyrc.vindsl 
    should work fine as well.
    I was able to take out the second sleep command but could not keep the & in there or VinDSL's conky would not start.

    Nice screen dane56!

    Aquarius18, didn't know I did anything but always glad to help.

    Cheers!

Page 162 of 287 FirstFirst ... 62112152160161162163164172212262 ... 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
  •