1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00

misc smaller fixes

This commit is contained in:
Phil Sutter 2009-10-28 03:54:53 +01:00
parent 22251dca51
commit a4777c7c55
5 changed files with 6 additions and 1 deletions

View File

@ -32,6 +32,7 @@
#include "text_object.h"
#include "conky.h"
#include "common.h"
#include "timed_thread.h"
#include <stdarg.h>
#include <math.h>
#include <time.h>

View File

@ -293,7 +293,7 @@ struct text_object *construct_text_object(const char *s, const char *arg, long
END OBJ(i8k_buttons_status, &update_i8k)
#if defined(IBM)
END OBJ(ibm_fan, 0)
END OBJ(ibm_temps, &get_ibm_acpi_temps, "ibm_temps: needs an argument")
END OBJ_ARG(ibm_temps, &get_ibm_acpi_temps, "ibm_temps: needs an argument")
parse_ibm_temps_arg(obj, arg);
END OBJ(ibm_volume, 0)
END OBJ(ibm_brightness, 0)

View File

@ -33,6 +33,7 @@
#include "logging.h"
#include "specials.h"
#include "text_object.h"
#include "timed_thread.h"
#include <stdio.h>
#include <sys/types.h>
#include <sys/wait.h>

View File

@ -33,6 +33,8 @@
#include "config.h"
#include "ibm.h"
#include "logging.h"
#include "temphelper.h"
#include <ctype.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>

View File

@ -33,6 +33,7 @@
#include "common.h"
#include "logging.h"
#include "text_object.h"
#include "timed_thread.h"
#include <errno.h>
#include <stdio.h>