Page 2317 of 2348 FirstFirst ... 13171817221722672307231523162317231823192327 ... LastLast
Results 23,161 to 23,170 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #23161
    Join Date
    Aug 2014
    Beans
    Hidden!
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Post your .conkyrc files w/ screenshots

    Hi brydonhunter looks good.
    Can you post your moon.sh and pressure.sh script or a link to a download of a
    conky that uses the same weather.
    What do I need to see forecast images?

  2. #23162
    Join Date
    Jun 2005
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Here is one I have kind of settled on for a while.
    Conkys are available upon request. There are 3 for this setup.
    Last edited by QDR06VV9; September 24th, 2015 at 06:17 PM.

  3. #23163
    Join Date
    Sep 2007
    Location
    Lancaster, Ontario
    Beans
    54
    Distro
    Ubuntu Gnome 17.04 Zesty Zapus

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by CantankRus View Post
    Hi brydonhunter looks good.
    Can you post your moon.sh and pressure.sh script or a link to a download of a
    conky that uses the same weather.
    What do I need to see forecast images?
    Hi CantanRus,

    Here are my scripts:

    moon.sh
    Code:
    #!/bin/bash
    
    #function: moonrise_set
    moonrise_set () {
        case "$1" in
             "FirstQuarter")
    			echo "Noon/Midnight"
             ;;
             "FullMoon")
    			echo "6PM/6AM"
    		 ;;	
    		 "LastQuarter")
    			echo "Midnight/Noon"
    		 ;;	
    		 "NewMoon")
    			echo "6AM/6PM"
    		 ;;
    		 "WaningCrescent")
    			echo "3AM/3PM"
    		 ;;
    		 "WaningGibbous")
    			echo "9PM/9AM"
    		 ;;
    		 "WaxingCrescent")
    			echo "9AM/9PM"
    		 ;;
    		 "WaxingGibbous")
    			echo "3PM/3AM"
    		 ;;
    		 *)
    			echo "Unavailable"
    		 esac
    } 
    
    #kill -STOP $(pidof conky)
    #killall wget
    
    #put your hemisphere here: n for north, s for south
    hemisphere=n
    
    wget -O $HOME/conky/raw "http://www.moongiant.com/phase/today"
    #wget -O $HOME/conky/cornwall "http://aa.usno.navy.mil/cgi-bin/aa_phases.pl?year=2015&month=8&day=20&nump=4&format=p"
    
    #grep -o 'Next Full Moon:[^"]*' cornwall > moon
    #sed -i 's/<[^>]*>//g' moon
    
    
    rm $HOME/conky/moon.png
    
    sed -i -e '/^ *$/d' -e 's/^ *//g' $HOME/conky/raw
    sed -i '/var jArray=\|"todayMoonContainer"/!d' $HOME/conky/raw
    sed -i -e '/var jArray/s/","/\n/g' -e 's/<span>\|<b>\|<\\\/span>\|<\\\/b>\|\\n//g' $HOME/conky/raw
    sed -i 's/"\].*\[\"/\n/g' $HOME/conky/raw
    sed -i '/var jArray/d' $HOME/conky/raw
    sed -i -e 's/"\]};//g' -e 's/^.*today_phase\///g' -e 's/\.jpg.*$//g' $HOME/conky/raw
    phase=$(sed -n 7p $HOME/conky/raw|sed 's/ //')
    mrise_mset=$(moonrise_set $phase)
    sed -i 7a$(moonrise_set $phase) $HOME/conky/raw
    img_in=$(sed -n 44p $HOME/conky/raw)
    cp $HOME/conky/moonicon/$img_in.png $HOME/conky/moon.png
    pressure.sh
    Code:
    #!/bin/bash
    # UV.sh by Scott Hayes 2015-08-19
    # Usage: UV.sh <UV Number>
    # Uses ~/.config/weather.xml from weather.yahoo.com
    
    
    UV=`grep "yweather:atmosphere" ~/.cache/weather.xml | grep -o "rising=\"[^\"]*\"" | grep -o "\"[^\"]*\"" | grep -o "[^\"]*" | tr '[a-z]' '[A-Z]'`
    
    if [ "$UV" = 0 ]; then
    	printf "Steady"
    elif [ "$UV" = 1 ]; then 
    	printf "Rising"
    else
    	printf "Falling"
    fi
    printf "\n"
    let me know if you have a y questions

    scott

  4. #23164
    Join Date
    Dec 2007
    Location
    Powder Springs, Ga
    Beans
    1,396
    Distro
    Ubuntu Development Release

    Re: Post your .conkyrc files w/ screenshots

    I am using gnome-shell 3.16 with ubuntu 15.10 and I can't get conky to display on my default display on my secondary display which is a TV. Here is a snippet of my config:

    Code:
    alignment top_left
    double_buffer yes
    no_buffers yes
    gap_x 1600
    gap_y 40
    | Corsair Carbide Series® 300R | Intel Core i5 650@3.20Ghz| OCZ-Vertex3 120 Gb SSD | Western Digital 640 Gb HDD | Western Digital 1 Tb HDD |
    |Gigabyte GeForce GTX 950 Extreme | Ubuntu 16.04 x86_64 | Windows 10 Pro |


  5. #23165
    Join Date
    Jun 2005
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Try this tad1073
    Gosh I hope I"m remembering correctly.
    Yours Reads
    Code:
    gap_x 1600
    Try instead
    Code:
    gap_x 1599
    If that is not right make it 1601.
    I'm sure you get the drift.
    Regards
    Last edited by QDR06VV9; September 5th, 2015 at 12:57 AM.

  6. #23166
    Join Date
    Dec 2007
    Location
    Powder Springs, Ga
    Beans
    1,396
    Distro
    Ubuntu Development Release

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by runrickus View Post
    Try this tad1073
    Gosh I hope I"m remembering correctly.
    Yours Reads
    Code:
    gap_x 1600
    Try instead
    Code:
    gap_x 1599
    If that is not right make it 1601.
    I'm sure you get the drift.
    Regards
    I've tried all different gap_x positions and none work. The only thing that does work is alignment but that just positions my conky on the left and right of my secondary monitor.
    | Corsair Carbide Series® 300R | Intel Core i5 650@3.20Ghz| OCZ-Vertex3 120 Gb SSD | Western Digital 640 Gb HDD | Western Digital 1 Tb HDD |
    |Gigabyte GeForce GTX 950 Extreme | Ubuntu 16.04 x86_64 | Windows 10 Pro |


  7. #23167
    Join Date
    Aug 2014
    Beans
    Hidden!
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Post your .conkyrc files w/ screenshots

    Try config settings as in this post

  8. #23168
    Join Date
    Apr 2015
    Beans
    37

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by CantankRus View Post
    Try config settings as in this post
    I once created an even simpler solution. Would be interesting to see if it helps.

    http://ubuntuforums.org/showthread.php?t=1797174
    Last edited by 42dorian2; September 5th, 2015 at 08:01 PM.

  9. #23169
    Join Date
    Dec 2007
    Location
    Powder Springs, Ga
    Beans
    1,396
    Distro
    Ubuntu Development Release

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by CantankRus View Post
    Try config settings as in this post
    Didn't work!

    Code:
    alignment tl
    double_buffer yes
    no_buffers yes
    gap_x 1600
    gap_y 40
    update_interval 0.5
    cpu_avg_samples 5
    net_avg_samples 5
    background yes
    own_window yes
    own_window_transparent yes
    own_window_argb_visual yes
    own_window_type normal
    draw_shades no
    draw_graph_borders no
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager,below
    minimum_size 300 1080
    maximum_width 300
    use_xft yes
    xftalpha 0.1
    xftfont Ubuntu:size=8
    default_color white
    | Corsair Carbide Series® 300R | Intel Core i5 650@3.20Ghz| OCZ-Vertex3 120 Gb SSD | Western Digital 640 Gb HDD | Western Digital 1 Tb HDD |
    |Gigabyte GeForce GTX 950 Extreme | Ubuntu 16.04 x86_64 | Windows 10 Pro |


  10. #23170
    Join Date
    Aug 2014
    Beans
    Hidden!
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Post your .conkyrc files w/ screenshots

    Yeah, sorry no experience with conky and dual monitors so can't help much.

Page 2317 of 2348 FirstFirst ... 13171817221722672307231523162317231823192327 ... 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
  •