diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2012-02-02 18:39:54 +0100 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2012-02-02 18:39:54 +0100 |
commit | ca5e65383c4d6b8ebde6c4a5ca9680cf3c263eff (patch) | |
tree | 7df24ce18e9772c476473c7ce387a7ef4a880244 /src/redshift.c | |
parent | Print status message when redshift is enabled/disabled by SIGUSR1. (diff) | |
download | redshift-ng-ca5e65383c4d6b8ebde6c4a5ca9680cf3c263eff.tar.gz redshift-ng-ca5e65383c4d6b8ebde6c4a5ca9680cf3c263eff.tar.bz2 redshift-ng-ca5e65383c4d6b8ebde6c4a5ca9680cf3c263eff.tar.xz |
Also print status on start up.
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/redshift.c b/src/redshift.c index fc6ed2f..dbbb542 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -1189,6 +1189,10 @@ main(int argc, char *argv[]) sigaction(SIGUSR1, &sigact, NULL); #endif /* HAVE_SIGNAL_H && ! __WIN32__ */ + if (verbose) { + printf("Status: %s\n", "Enabled"); + } + /* Continously adjust color temperature */ int done = 0; int disabled = 0; |