~ubuntu-branches/ubuntu/intrepid/wmtemp/intrepid

« back to all changes in this revision

Viewing changes to main.c

  • Committer: Bazaar Package Importer
  • Author(s): Riccardo Stagni
  • Date: 2008-06-20 02:34:07 UTC
  • mfrom: (3.1.2 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080620023407-qle1ytwtv3ssxznf
Tags: 0.0.6-2
* Bumped Standards-Version to 3.8.0, changed debian/rules to support the
  standard values of DEB_BUILD_OPTIONS:
  added support to parallel builds (even if we compile just 3 C source
  files) and removed the nostrip check (because we rely on dh_strip)
* debian/control: lowered package priority (we depend on lm-sensors
  which is extra).
* Removed useless xutils dependency
  (this also fixes lintian's build-depends-on-obsolete-package)
* Added dependency on x11proto-xext-dev as we use some of its headers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
404
404
   printf("WMtemp - temperature monitor dockapp\n");
405
405
   printf("  -d <string>                    display to use\n");
406
406
   printf("  -bl                            turn on back-light\n");
407
 
   printf("  -lc <string>                   back-light color(rgb:6E/C6/3B is default)\n");
 
407
   printf("  -lc <string>                   back-light color (rgb:6E/C6/3B is default)\n");
408
408
   printf("  -i <number>                    number of secs between updates (1 is default)\n");
409
409
   printf("  -h                             show this help text and exit\n");
410
410
   printf("  -v                             show program version and exit\n");
411
411
   printf("  -w                             run the application in windowed mode\n");
412
412
   printf("  -bw                            activate broken window manager fix\n");
413
 
   printf("  -ac <number>                   activate alarm mode of CPU.\n");
414
 
   printf("                                 <number>");
415
 
   printf("                                 is threshold from 0 to 100.\n");
416
 
   printf("                                 (60 is default)\n");
417
 
   printf("  -as <number>                   activate alarm mode of system.\n");
418
 
   printf("                                 <number> is");
419
 
   printf("                                 threshold from 0 to 100.\n");
420
 
   printf("                                 (60 is default)\n");
421
 
   printf("  -c <path>                      location of the sensors.conf file.\n");
 
413
   printf("  -ac <number>                   activate alarm mode of CPU\n");
 
414
   printf("                                 <number> is threshold from 0 to 100\n");
 
415
   printf("                                 (60 is default)\n");
 
416
   printf("  -as <number>                   activate alarm mode of system\n");
 
417
   printf("                                 <number> is threshold from 0 to 100\n");
 
418
   printf("                                 (60 is default)\n");
 
419
   printf("  -c <path>                      location of the sensors.conf file\n");
422
420
   printf("                                 ('/etc/sensors.conf' is default)\n");
423
 
   printf("  -cf <feature>                  which feature to use for cpu temperature.\n");
 
421
   printf("  -cf <feature>                  which feature to use for cpu temperature\n");
424
422
   printf("                                 ('temp1' is default)\n");
425
 
   printf("  -sf <feature>                  which feature to use for sys temperature.\n");
 
423
   printf("  -sf <feature>                  which feature to use for sys temperature\n");
426
424
   printf("                                 ('temp2' is default)\n");
427
 
   printf("  -s                             swap the cpu and sys temperatures.\n");
 
425
   printf("  -s                             swap the cpu and sys temperatures\n");
428
426
   printf("                                 (/etc/sensors.conf is default)\n");
429
 
   printf("  -f                             show temperatures in Fahrenheit.\n");
430
 
   printf("  -k                             show temperatures in Kelvin.\n");
 
427
   printf("  -f                             show temperatures in Fahrenheit\n");
 
428
   printf("  -k                             show temperatures in Kelvin\n");
431
429
}