GeekTool – informace přímo na obrazovce

GeekTool
  1. Stažení ikony teploty a aktuálního počasí :
  2. #!/bin/bash

    # Aktuální stav počasí
    curl –silent “http://xml.weather.yahoo.com/forecastrss?w=796597&u=c” | grep -E ‘(Current Conditions:|C<BR)’ | sed -e ‘s/Current Conditions://’ -e ‘s/<br \/>//’ -e ‘s/<b>//’ -e ‘s/<\/b>//’ -e ‘s/<BR \/>//’ -e ‘s///’ -e ‘s/<\/description>//’
    #
    #
    # Ikona do adresře  /Users/mstefl/Documents/GeekTool/weather.png
    curl –silen http://weather.yahoo.com/czech-republic/hlavni-mesto-praha/prague-796597/ |  grep “forecast-icon” | sed “s/.*background\:url(\’\(.*\)\’)\;\ _background.*/\1/” | xargs curl –silent -o /Users/mstefl/Documents/GeekTool/weather.png
  3. Počet nepřečtených emailů na GMailu :
  4. #!/bin/bash
    #
    curl –silent https://’USERNAME‘:’PASSWORD‘@mail.google.com/mail/feed/atom/inbox | grep fullcount | sed -e ‘s///’ -e ‘s/<\/fullcount>//’

  5. Jednoduchá html stránka
  6. #!/bin/bash
    #
    curl –silent www.mstefl.cz/sas/ | sed -e ‘s/
    //’ | sed -e ‘s/< \/br>//’ | grep ‘.’