Récupère le saint du jour sur le site de météo france.
Ex: Sainte Reine
Nécessite le programme lynx pour récupérer la page web sans les balises (installation facile via macports).
Script:
#! /bin/bash
METEO_ADDRESS="http://www.meteo.fr/"
/usr/local/bin/lynx -dump "${METEO_ADDRESS}"
| LANG="fr_FR.ISO-8859-1" sed -nE 's/^[ ]*((Saint[e]?[ ].*)|(St[e]?[ ].*))$/1/p'
[Admin Note: This is a script for displaying the French saint of the day using the lynx browser to extract it from the meteo.fr web site. You will need to install lynx (easy to do through MacPorts, but this may make the path /opt/local/bin instead of /usr/local/bin). Once Lynx is installed you should be able to just paste the script into GeekTool and it should work.]