#ifndef PROPERTIES_H__ #define PROPERTIES_H__ #include typedef struct { gchar *ucolor; gchar *scolor; guint speed, height, width; gboolean look; } cpuload_properties; void properties(AppletWidget *applet, gpointer data); void load_properties( const char *path, cpuload_properties *prop ); void save_properties( const char *path, cpuload_properties *prop ); void setup_colors (void); void start_timer (void); #endif