diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2011-10-18 18:02:28 +0200 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2011-10-18 18:02:28 +0200 |
commit | 802d09e83bb6ffa0a70b702f59069435d6feb8c6 (patch) | |
tree | 3e0a128b3c968339de55c4a724ae52c319a75d77 /src | |
parent | Set buffering on stdout and stderr to line-buffered. (diff) | |
download | redshift-ng-802d09e83bb6ffa0a70b702f59069435d6feb8c6.tar.gz redshift-ng-802d09e83bb6ffa0a70b702f59069435d6feb8c6.tar.bz2 redshift-ng-802d09e83bb6ffa0a70b702f59069435d6feb8c6.tar.xz |
Add various documentation updates: DESIGN and HACKING document, and various small comments int the source (Christian Jaeger).
Update man page with information on configuration file.
Diffstat (limited to 'src')
-rw-r--r-- | src/location-geoclue.c | 4 | ||||
-rw-r--r-- | src/location-gnome-clock.c | 4 | ||||
-rw-r--r-- | src/location-manual.c | 3 | ||||
-rw-r--r-- | src/redshift.c | 7 |
4 files changed, 16 insertions, 2 deletions
diff --git a/src/location-geoclue.c b/src/location-geoclue.c index 4050f41..6aedfcd 100644 --- a/src/location-geoclue.c +++ b/src/location-geoclue.c @@ -117,6 +117,10 @@ location_geoclue_print_help(FILE *f) fputs(_(" name=N\tName of Geoclue provider (or `default')\n" " path=N\tPath of Geoclue provider (or `default')\n"), f); fputs("\n", f); + fputs(_("NOTE: currently redshift doesn't recheck geoclue once started,\n" + "which means it has to be restarted to take notice after travel.\n"), + f); + fputs("\n", f); } int diff --git a/src/location-gnome-clock.c b/src/location-gnome-clock.c index 2bb1949..f68af2f 100644 --- a/src/location-gnome-clock.c +++ b/src/location-gnome-clock.c @@ -156,7 +156,9 @@ location_gnome_clock_init(location_gnome_clock_state_t *state) char *lat_str = strstr(current_city, "latitude=\""); char *lon_str = strstr(current_city, "longitude=\""); if (lat_str == NULL || lon_str == NULL) { - fputs(_("Location not specified for city.\n"), stderr); + fprintf(stderr, + _("Location not specified for city `%s'.\n"), + current_city); g_free(current_city); return -1; } diff --git a/src/location-manual.c b/src/location-manual.c index 1f68b6c..11586bb 100644 --- a/src/location-manual.c +++ b/src/location-manual.c @@ -70,6 +70,9 @@ location_manual_print_help(FILE *f) fputs(_(" lat=N\t\tLatitude\n" " lon=N\t\tLongitude\n"), f); fputs("\n", f); + fputs(_("Both values are expected to be floating point numbers,\n" + "negative values representing west / south, respectively.\n"), f); + fputs("\n", f); } int diff --git a/src/redshift.c b/src/redshift.c index 08f3e1d..9cd1e36 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -930,6 +930,9 @@ main(int argc, char *argv[]) location_providers[i].name != NULL; i++) { const location_provider_t *p = &location_providers[i]; + fprintf(stderr, + _("Trying location provider `%s'...\n"), + p->name); r = provider_try_start(p, &location_state, &config_state, NULL); if (r < 0) { @@ -966,6 +969,8 @@ main(int argc, char *argv[]) if (verbose) { /* TRANSLATORS: Append degree symbols if possible. */ printf(_("Location: %f, %f\n"), lat, lon); + printf(_("Temperatures: %dK at day, %dK at night\n"), + temp_day, temp_night); } /* Latitude */ @@ -1314,7 +1319,7 @@ main(int argc, char *argv[]) } } - /* Sleep for a while */ + /* Sleep for 5 seconds or 0.1 second. */ #ifndef _WIN32 if (short_trans) usleep(100000); else usleep(5000000); |