Revert "Uhh..ansohus"
authorBrenden Matthews <brenden@rty.ca>
Fri, 7 Aug 2009 07:24:24 +0000 (01:24 -0600)
committerBrenden Matthews <brenden@rty.ca>
Fri, 7 Aug 2009 07:24:24 +0000 (01:24 -0600)
This reverts commit 9827726ae5a13a49a9bcb3528db9a251e0e99530.

Or this.

26 files changed:
.gitignore
src/Makefile.am
src/colours.c
src/colours.h
src/common.c
src/common.h
src/conky.c
src/conky.h
src/core.c
src/core.h
src/fonts.h
src/freebsd.c
src/linux.c
src/llua.c
src/llua.h
src/obj_create.c [deleted file]
src/obj_create.h [deleted file]
src/obj_destroy.c [deleted file]
src/obj_destroy.h [deleted file]
src/obj_display.c [deleted file]
src/obj_display.h [deleted file]
src/specials.h
src/structs.h [deleted file]
src/text_object.h
src/x11.c
src/x11.h

index 1a0d124..e10af08 100644 (file)
@@ -12,7 +12,6 @@ config.status
 config.sub
 configure
 configure.ac
-compile
 depcomp
 install-sh
 libtool
@@ -31,8 +30,6 @@ src/build.h
 src/config.h
 src/defconfig.h
 src/*.o
-lua/.deps/
-lua/.libs/
 conky-*.tar.*
 doc/*.html
 doc/*.mxml
index 4f58078..a8276ac 100644 (file)
@@ -152,13 +152,6 @@ conky_SOURCES = \
        conky.h                 \
        core.c                  \
        core.h                  \
-       obj_create.c            \
-       obj_create.h            \
-       obj_display.c           \
-       obj_display.h           \
-       obj_destroy.c           \
-       obj_destroy.h           \
-       structs.h               \
        $(freebsd)              \
        fs.c                    \
        $(hddtemp)              \
index 6872c5b..c32eda1 100644 (file)
@@ -28,9 +28,7 @@
  * vim: ts=4 sw=4 noet ai cindent syntax=c
  *
  */
-
 #include "conky.h"
-#include "core.h"
 #include "logging.h"
 #ifdef X11
 #include "x11.h"
 #define CONST_8_TO_5_BITS 0.12156862745098
 #define CONST_8_TO_6_BITS 0.247058823529412
 
-static void set_up_gradient(conky_context *ctx)
+static short colour_depth = 0;
+static long redmask, greenmask, bluemask;
+
+static void set_up_gradient(void)
 {
        int i;
 #ifdef X11
-       if (ctx->output_methods & TO_X) {
-               ctx->colour_depth = DisplayPlanes(display, screen);
+       if (output_methods & TO_X) {
+               colour_depth = DisplayPlanes(display, screen);
        } else
 #endif /* X11 */
        {
-               ctx->colour_depth = 16;
+               colour_depth = 16;
        }
-       if (ctx->colour_depth != 24 && ctx->colour_depth != 16) {
+       if (colour_depth != 24 && colour_depth != 16) {
                NORM_ERR("using non-standard colour depth, gradients may look like a "
                        "lolly-pop");
        }
 
-       ctx->redmask = 0;
-       ctx->greenmask = 0;
-       ctx->bluemask = 0;
-       for (i = (ctx->colour_depth / 3) - 1; i >= 0; i--) {
-               ctx->redmask |= 1 << i;
-               ctx->greenmask |= 1 << i;
-               ctx->bluemask |= 1 << i;
+       redmask = 0;
+       greenmask = 0;
+       bluemask = 0;
+       for (i = (colour_depth / 3) - 1; i >= 0; i--) {
+               redmask |= 1 << i;
+               greenmask |= 1 << i;
+               bluemask |= 1 << i;
        }
-       if (ctx->colour_depth % 3 == 1) {
-               ctx->greenmask |= 1 << (ctx->colour_depth / 3);
+       if (colour_depth % 3 == 1) {
+               greenmask |= 1 << (colour_depth / 3);
        }
-       ctx->redmask = ctx->redmask << (2 * ctx->colour_depth / 3 + ctx->colour_depth % 3);
-       ctx->greenmask = ctx->greenmask << (ctx->colour_depth / 3);
+       redmask = redmask << (2 * colour_depth / 3 + colour_depth % 3);
+       greenmask = greenmask << (colour_depth / 3);
 }
 
 /* adjust colour values depending on colour depth */
-unsigned int adjust_colours(conky_context *ctx, unsigned int colour)
+unsigned int adjust_colours(unsigned int colour)
 {
        double r, g, b;
 
-       if (ctx->colour_depth == 0) {
-               set_up_gradient(ctx);
+       if (colour_depth == 0) {
+               set_up_gradient();
        }
-       if (ctx->colour_depth == 16) {
+       if (colour_depth == 16) {
                r = (colour & 0xff0000) >> 16;
                g = (colour & 0xff00) >> 8;
                b =  colour & 0xff;
@@ -91,25 +92,25 @@ unsigned int adjust_colours(conky_context *ctx, unsigned int colour)
 }
 
 /* this function returns the next colour between two colours for a gradient */
-unsigned long *do_gradient(conky_context *ctx, int width, unsigned long first_colour, unsigned long last_colour)
+unsigned long *do_gradient(int width, unsigned long first_colour, unsigned long last_colour)
 {
        int red1, green1, blue1;                                // first colour
        int red2, green2, blue2;                                // last colour
        int reddiff, greendiff, bluediff;               // difference
-       short redshift = (2 * ctx->colour_depth / 3 + ctx->colour_depth % 3);
-       short greenshift = (ctx->colour_depth / 3);
+       short redshift = (2 * colour_depth / 3 + colour_depth % 3);
+       short greenshift = (colour_depth / 3);
        unsigned long *colours = malloc(width * sizeof(unsigned long));
        int i;
 
-       if (ctx->colour_depth == 0) {
-               set_up_gradient(ctx);
+       if (colour_depth == 0) {
+               set_up_gradient();
        }
-       red1 = (first_colour & ctx->redmask) >> redshift;
-       green1 = (first_colour & ctx->greenmask) >> greenshift;
-       blue1 = first_colour & ctx->bluemask;
-       red2 = (last_colour & ctx->redmask) >> redshift;
-       green2 = (last_colour & ctx->greenmask) >> greenshift;
-       blue2 = last_colour & ctx->bluemask;
+       red1 = (first_colour & redmask) >> redshift;
+       green1 = (first_colour & greenmask) >> greenshift;
+       blue1 = first_colour & bluemask;
+       red2 = (last_colour & redmask) >> redshift;
+       green2 = (last_colour & greenmask) >> greenshift;
+       blue2 = last_colour & bluemask;
        reddiff = abs(red1 - red2);
        greendiff = abs(green1 - green2);
        bluediff = abs(blue1 - blue2);
@@ -149,14 +150,14 @@ unsigned long *do_gradient(conky_context *ctx, int width, unsigned long first_co
                if (blue3 < 0) {
                        blue3 = 0;
                }
-               if (red3 > ctx->bluemask) {
-                       red3 = ctx->bluemask;
+               if (red3 > bluemask) {
+                       red3 = bluemask;
                }
-               if (green3 > ctx->bluemask) {
-                       green3 = ctx->bluemask;
+               if (green3 > bluemask) {
+                       green3 = bluemask;
                }
-               if (blue3 > ctx->bluemask) {
-                       blue3 = ctx->bluemask;
+               if (blue3 > bluemask) {
+                       blue3 = bluemask;
                }
                colours[i] = (red3 << redshift) | (green3 << greenshift) | blue3;
        }
index 392394b..f73e17d 100644 (file)
@@ -29,7 +29,7 @@
 #ifndef _COLOURS_H
 #define _COLOURS_H
 
-unsigned int adjust_colours(conky_context *ctx, unsigned int);
-unsigned long *do_gradient(conky_context *ctx, int, unsigned long, unsigned long);
+unsigned int adjust_colours(unsigned int);
+unsigned long *do_gradient(int, unsigned long, unsigned long);
 
 #endif /* _COLOURS_H */
index 4202303..1d14215 100644 (file)
@@ -30,7 +30,7 @@
  */
 
 #include "config.h"
-#include "common.h"
+#include "conky.h"
 #include "fs.h"
 #include "logging.h"
 #include <ctype.h>
@@ -84,9 +84,9 @@ char *strndup(const char *s, size_t n)
 }
 #endif /* HAVE_STRNDUP */
 
-void update_uname(conky_context *ctx)
+void update_uname(void)
 {
-       uname(&ctx->info.uname_s);
+       uname(&info.uname_s);
 }
 
 double get_time(void)
@@ -111,7 +111,7 @@ void to_real_path(char *dest, const char *source)
                        NORM_ERR("$HOME environment variable doesn't exist");
                        strncpy(dest, source, DEFAULT_TEXT_BUFFER_SIZE);
                }
-       } else if (dest != source) {    //see changelog 2009-06-29 if you doubt that this check is necessary
+       } else if (dest != source) {    //see changelog 2009-06-29 if you doubt that this check is necessary 
                strncpy(dest, source, DEFAULT_TEXT_BUFFER_SIZE);
        }
 }
@@ -299,10 +299,10 @@ END_TRUE:
        return 1;
 }
 
-void free_dns_data(conky_context *ctx)
+void free_dns_data(void)
 {
        int i;
-       struct dns_data *data = &ctx->info.nameserver_info;
+       struct dns_data *data = &info.nameserver_info;
        for (i = 0; i < data->nscount; i++)
                free(data->ns_list[i]);
        if (data->ns_list)
@@ -312,20 +312,20 @@ void free_dns_data(conky_context *ctx)
 
 //static double last_dns_update;
 
-static void update_dns_data(conky_context *ctx)
+static void update_dns_data(void)
 {
        FILE *fp;
        char line[256];
-       struct dns_data *data = &ctx->info.nameserver_info;
+       struct dns_data *data = &info.nameserver_info;
 
        /* maybe updating too often causes higher load because of /etc lying on a real FS
-       if (ctx->current_update_time - last_dns_update < 10.0)
+       if (current_update_time - last_dns_update < 10.0)
                return;
        else
-               last_dns_update = ctx->current_update_time;
+               last_dns_update = current_update_time;
        */
 
-       free_dns_data(ctx);
+       free_dns_data();
 
        if ((fp = fopen("/etc/resolv.conf", "r")) == NULL)
                return;
@@ -383,15 +383,21 @@ void format_seconds_short(char *buf, unsigned int n, long seconds)
        }
 }
 
-#define NEED(a) ((need_mask & (1ULL << a)) && ((ctx->info.mask & (1ULL << a)) == 0))
+static double last_meminfo_update;
+static double last_fs_update;
 
-void update_stuff(conky_context *ctx)
+unsigned long long need_mask;
+int no_buffers;
+
+#define NEED(a) ((need_mask & (1ULL << a)) && ((info.mask & (1ULL << a)) == 0))
+
+void update_stuff(void)
 {
        int i;
 
-       ctx->info.mask = 0;
+       info.mask = 0;
 
-       if (ctx->no_buffers) {
+       if (no_buffers) {
                need_mask |= 1 << INFO_BUFFERS;
        }
 
@@ -449,7 +455,7 @@ void update_stuff(conky_context *ctx)
 
 #ifdef MOC
        if (NEED(INFO_MOC)) {
-               run_moc_thread(ctx->info.music_player_interval * 100000);
+               run_moc_thread(info.music_player_interval * 100000);
        }
 #endif
 
@@ -476,17 +482,17 @@ void update_stuff(conky_context *ctx)
        }
 
        if ((NEED(INFO_MEM) || NEED(INFO_BUFFERS) || NEED(INFO_TOP))
-                       && ctx->current_update_time - ctx->last_meminfo_update > 6.9) {
+                       && current_update_time - last_meminfo_update > 6.9) {
                update_meminfo();
-               if (ctx->no_buffers) {
-                       ctx->info.mem -= ctx->info.bufmem;
-                       ctx->info.memeasyfree += ctx->info.bufmem;
+               if (no_buffers) {
+                       info.mem -= info.bufmem;
+                       info.memeasyfree += info.bufmem;
                }
-               ctx->last_meminfo_update = ctx->current_update_time;
+               last_meminfo_update = current_update_time;
        }
-
+       
 #ifdef X11
-       if (NEED(INFO_X11) && ctx->x_initialised == YES) {
+       if (NEED(INFO_X11) && x_initialised == YES) {
                update_x11info();
        }
 #endif
@@ -496,9 +502,9 @@ void update_stuff(conky_context *ctx)
        }
 
        /* update_fs_stat() won't do anything if there aren't fs -things */
-       if (NEED(INFO_FS) && ctx->current_update_time - ctx->last_fs_update > 12.9) {
+       if (NEED(INFO_FS) && current_update_time - last_fs_update > 12.9) {
                update_fs_stats();
-               ctx->last_fs_update = ctx->current_update_time;
+               last_fs_update = current_update_time;
        }
 #ifdef TCP_PORT_MONITOR
        if (NEED(INFO_TCP_PORT_MONITOR)) {
@@ -517,7 +523,7 @@ void update_stuff(conky_context *ctx)
        }
 #endif /* __linux__ */
        if (NEED(INFO_DNS)) {
-               update_dns_data(ctx);
+               update_dns_data();
        }
 #ifdef APCUPSD
        if (NEED(INFO_APCUPSD)) {
index da91d60..fa9211f 100644 (file)
@@ -3,8 +3,6 @@
 #ifndef _COMMON_H
 #define _COMMON_H
 
-#include "structs.h"
-
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -18,10 +16,10 @@ void update_meminfo(void);
 void update_net_stats(void);
 void update_cpu_usage(void);
 void update_total_processes(void);
-void update_uname(conky_context *ctx);
+void update_uname(void);
 void update_running_processes(void);
 void update_i8k(void);
-void update_stuff(conky_context *ctx);
+void update_stuff(void);
 char get_freq(char *, size_t, const char *, int, unsigned int);
 void get_freq_dynamic(char *, size_t, const char *, int);
 char get_voltage(char *, size_t, const char *, int, unsigned int);     /* ptarjan */
@@ -54,7 +52,11 @@ unsigned int round_to_int(float);
 extern unsigned long long need_mask;
 extern int no_buffers;
 
-void free_dns_data(conky_context *ctx);
+struct dns_data {
+        int nscount;
+        char **ns_list;
+};
+void free_dns_data(void);
 
 struct net_stat {
         char *dev;
@@ -76,7 +78,6 @@ struct net_stat {
         char ap[18];
 };
 void clear_net_stats(void);
-void clear_cpu_stats(void);
 struct net_stat *get_net_stat(const char *dev, void *free_at_crash1, void *free_at_crash2);
 int interface_up(const char *dev);
 
index 0945c3f..4df492b 100644 (file)
@@ -33,7 +33,6 @@
 #include "text_object.h"
 #include "conky.h"
 #include "common.h"
-#include "core.h"
 #include <stdarg.h>
 #include <math.h>
 #include <time.h>
@@ -54,7 +53,7 @@
 #include <X11/Xutil.h>
 #ifdef HAVE_XDAMAGE
 #include <X11/extensions/Xdamage.h>
-#endif /* HAVE_XDAMAGE */
+#endif
 #ifdef IMLIB2
 #include "imlib2.h"
 #endif /* IMLIB2 */
@@ -73,9 +72,7 @@
 #endif /* XOAP */
 
 /* local headers */
-#include "obj_create.h"
-#include "obj_display.h"
-#include "obj_destroy.h"
+#include "core.h"
 #include "algebra.h"
 #include "build.h"
 #include "colours.h"
@@ -133,7 +130,33 @@ char *get_apm_battery_time(void);
 /* debugging level, used by logging.h */
 int global_debug_level = 0;
 
+/* two strings for internal use */
+static char *tmpstring1, *tmpstring2;
+
+/* variables holding various config settings */
+int short_units;
+int format_human_readable;
+int cpu_separate;
+enum {
+       NO_SPACER = 0,
+       LEFT_SPACER,
+       RIGHT_SPACER
+} use_spacer;
+int top_cpu, top_mem, top_time;
+#ifdef IOSTATS
+int top_io;
+#endif
+static unsigned int top_name_width = 15;
+int output_methods;
+static int extra_newline;
+enum x_initialiser_state x_initialised = NO;
 static volatile int g_signal_pending;
+/* Update interval */
+double update_interval;
+double update_interval_old;
+double update_interval_bat;
+void *global_cpu = NULL;
+pid_t childpid = 0;
 
 int argc_copy;
 char** argv_copy;
@@ -142,6 +165,8 @@ char** argv_copy;
 static void signal_handler(int);
 static void print_version(void) __attribute__((noreturn));
 static void reload_config(void);
+static void generate_text_internal(char *, int, struct text_object,
+                                   struct information *);
 
 static void print_version(void)
 {
@@ -245,483 +270,6058 @@ static void print_version(void)
        exit(EXIT_SUCCESS);
 }
 
-#ifdef HAVE_SYS_INOTIFY_H
-int inotify_fd;
+static const char *suffixes[] = { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "" };
+
+
+#ifdef X11
+
+static void X11_create_window(void);
+static void X11_initialisation(void);
+
+struct _x11_stuff_s {
+       Region region;
+#ifdef HAVE_XDAMAGE
+       Damage damage;
+       XserverRegion region2, part;
+       int event_base, error_base;
 #endif
+} x11_stuff;
+
+/* text size */
+
+static int text_start_x, text_start_y; /* text start position in window */
+static int text_width, text_height;
+
+/* alignments */
+enum alignment {
+       TOP_LEFT = 1,
+       TOP_RIGHT,
+       TOP_MIDDLE,
+       BOTTOM_LEFT,
+       BOTTOM_RIGHT,
+       BOTTOM_MIDDLE,
+       MIDDLE_LEFT,
+       MIDDLE_RIGHT,
+       NONE
+};
+
+/* display to connect to */
+static char *disp = NULL;
+
+#endif /* X11 */
+
+/* struct that has all info to be shared between
+ * instances of the same text object */
+struct information info;
+
+/* path to config file */
+char *current_config;
+
+/* set to 1 if you want all text to be in uppercase */
+static unsigned int stuff_in_uppercase;
+
+/* Run how many times? */
+static unsigned long total_run_times;
+
+/* fork? */
+static int fork_to_background;
+
+static int cpu_avg_samples, net_avg_samples, diskio_avg_samples;
+
+/* filenames for output */
+char *overwrite_file = NULL; FILE *overwrite_fpointer = NULL;
+char *append_file = NULL; FILE *append_fpointer = NULL;
+
+#ifdef X11
+
+static int show_graph_scale;
+static int show_graph_range;
 
-static void main_loop(conky_context *ctx)
+/* Position on the screen */
+static int text_alignment;
+static int gap_x, gap_y;
+
+/* border */
+static int draw_borders;
+static int draw_graph_borders;
+static int stippled_borders;
+
+int get_stippled_borders(void)
 {
-       int terminate = 0;
-#ifdef SIGNAL_BLOCKING
-       sigset_t newmask, oldmask;
+       return stippled_borders;
+}
+
+static int draw_shades, draw_outline;
+
+long default_fg_color, default_bg_color, default_out_color;
+
+/* create own window or draw stuff to root? */
+static int set_transparent = 0;
+
+#ifdef OWN_WINDOW
+static int own_window = 0;
+static int background_colour = 0;
+
+/* fixed size/pos is set if wm/user changes them */
+static int fixed_size = 0, fixed_pos = 0;
 #endif
-       double t;
-#ifdef HAVE_SYS_INOTIFY_H
-       int inotify_config_wd = -1;
-#define INOTIFY_EVENT_SIZE  (sizeof(struct inotify_event))
-#define INOTIFY_BUF_LEN     (20 * (INOTIFY_EVENT_SIZE + 16))
-       char inotify_buff[INOTIFY_BUF_LEN];
-#endif /* HAVE_SYS_INOTIFY_H */
 
+static int minimum_width, minimum_height;
+static int maximum_width;
 
-#ifdef SIGNAL_BLOCKING
-       sigemptyset(&newmask);
-       sigaddset(&newmask, SIGINT);
-       sigaddset(&newmask, SIGTERM);
-       sigaddset(&newmask, SIGUSR1);
+#endif /* X11 */
+
+#ifdef __OpenBSD__
+static int sensor_device;
 #endif
 
-       ctx->next_update_time = get_time();
-       while (terminate == 0 && (ctx->total_run_times == 0 || ctx->info.looped < ctx->total_run_times)) {
-               if (ctx->update_interval_bat != NOBATTERY && ctx->update_interval_bat != ctx->update_interval_old) {
-                       char buf[ctx->max_user_text];
+long color0, color1, color2, color3, color4, color5, color6, color7, color8,
+        color9;
 
-                       get_battery_short_status(buf, ctx->max_user_text, "BAT0");
-                       if(buf[0] == 'D') {
-                               ctx->update_interval = ctx->update_interval_bat;
-                       } else {
-                               ctx->update_interval = ctx->update_interval_old;
+static char *template[MAX_TEMPLATES];
+
+char **get_templates(void)
+{
+       return template;
+}
+
+/* maximum size of config TEXT buffer, i.e. below TEXT line. */
+unsigned int max_user_text;
+
+/* maximum size of individual text buffers, ie $exec buffer size */
+unsigned int text_buffer_size = DEFAULT_TEXT_BUFFER_SIZE;
+
+/* UTF-8 */
+int utf8_mode = 0;
+
+/* no buffers in used memory? */
+int no_buffers;
+
+/* pad percentages to decimals? */
+static int pad_percents = 0;
+
+static char *global_text = 0;
+
+char *get_global_text(void)
+{
+       return global_text;
+}
+
+long global_text_lines;
+
+static int total_updates;
+static int updatereset;
+
+void set_updatereset(int i)
+{
+       updatereset = i;
+}
+
+int get_updatereset(void)
+{
+       return updatereset;
+}
+
+int check_contains(char *f, char *s)
+{
+       int ret = 0;
+       FILE *where = open_file(f, 0);
+
+       if (where) {
+               char buf1[256];
+
+               while (fgets(buf1, 256, where)) {
+                       if (strstr(buf1, s)) {
+                               ret = 1;
+                               break;
                        }
                }
-               ctx->info.looped++;
+               fclose(where);
+       } else {
+               NORM_ERR("Could not open the file");
+       }
+       return ret;
+}
 
-#ifdef SIGNAL_BLOCKING
-               /* block signals.  we will inspect for pending signals later */
-               if (sigprocmask(SIG_BLOCK, &newmask, &oldmask) < 0) {
-                       CRIT_ERR(NULL, NULL, "unable to sigprocmask()");
+#define SECRIT_MULTILINE_CHAR '\x02'
+
+#ifdef X11
+
+static inline int calc_text_width(const char *s, int l)
+{
+       if ((output_methods & TO_X) == 0) {
+               return 0;
+       }
+#ifdef XFT
+       if (use_xft) {
+               XGlyphInfo gi;
+
+               if (utf8_mode) {
+                       XftTextExtentsUtf8(display, fonts[selected_font].xftfont,
+                               (const FcChar8 *) s, l, &gi);
+               } else {
+                       XftTextExtents8(display, fonts[selected_font].xftfont,
+                               (const FcChar8 *) s, l, &gi);
                }
+               return gi.xOff;
+       } else
 #endif
+       {
+               return XTextWidth(fonts[selected_font].font, s, l);
+       }
+}
+#endif /* X11 */
 
-#ifdef X11
-               if (ctx->output_methods & TO_X) {
-                       XFlush(display);
+/* formatted text to render on screen, generated in generate_text(),
+ * drawn in draw_stuff() */
 
-                       /* wait for X event or timeout */
+static char *text_buffer;
 
-                       if (!XPending(display)) {
-                               fd_set fdsr;
-                               struct timeval tv;
-                               int s;
-                               t = ctx->next_update_time - get_time();
+/* quite boring functions */
 
-                               if (t < 0) {
-                                       t = 0;
-                               } else if (t > ctx->update_interval) {
-                                       t = ctx->update_interval;
-                               }
+static inline void for_each_line(char *b, int f(char *, int))
+{
+       char *ps, *pe;
+       int special_index = 0; /* specials index */
 
-                               tv.tv_sec = (long) t;
-                               tv.tv_usec = (long) (t * 1000000) % 1000000;
-                               FD_ZERO(&fdsr);
-                               FD_SET(ConnectionNumber(display), &fdsr);
+       for (ps = b, pe = b; *pe; pe++) {
+               if (*pe == '\n') {
+                       *pe = '\0';
+                       special_index = f(ps, special_index);
+                       *pe = '\n';
+                       ps = pe + 1;
+               }
+       }
 
-                               s = select(ConnectionNumber(display) + 1, &fdsr, 0, 0, &tv);
-                               if (s == -1) {
-                                       if (errno != EINTR) {
-                                               NORM_ERR("can't select(): %s", strerror(errno));
-                                       }
-                               } else {
-                                       /* timeout */
-                                       if (s == 0) {
-                                               update_text(ctx);
-                                       }
-                               }
+       if (ps < pe) {
+               f(ps, special_index);
+       }
+}
+
+static void convert_escapes(char *buf)
+{
+       char *p = buf, *s = buf;
+
+       while (*s) {
+               if (*s == '\\') {
+                       s++;
+                       if (*s == 'n') {
+                               *p++ = '\n';
+                       } else if (*s == '\\') {
+                               *p++ = '\\';
                        }
+                       s++;
+               } else {
+                       *p++ = *s++;
+               }
+       }
+       *p = '\0';
+}
 
-                       if (ctx->need_to_update) {
-#ifdef OWN_WINDOW
-                               int wx = ctx->window.x, wy = ctx->window.y;
-#endif
+/* Prints anything normally printed with snprintf according to the current value
+ * of use_spacer.  Actually slightly more flexible than snprintf, as you can
+ * safely specify the destination buffer as one of your inputs.  */
+int spaced_print(char *buf, int size, const char *format, int width, ...)
+{
+       int len = 0;
+       va_list argp;
+       char *tempbuf;
 
-                               ctx->need_to_update = 0;
-                               ctx->selected_font = 0;
-                               update_text_area(ctx);
-#ifdef OWN_WINDOW
-                               if (ctx->own_window) {
-                                       int changed = 0;
+       if (size < 1) {
+               return 0;
+       }
+       tempbuf = malloc(size * sizeof(char));
 
-                                       /* resize ctx->window if it isn't right size */
-                                       if (!ctx->fixed_size
-                                                       && (ctx->text_width + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2 != ctx->window.width
-                                                               || ctx->text_height + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2 != ctx->window.height)) {
-                                               ctx->window.width = ctx->text_width + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2;
-                                               ctx->window.height = ctx->text_height + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2;
-                                               draw_stuff(ctx); /* redraw everything in our newly sized ctx->window */
-                                               XResizeWindow(display, ctx->window.window, ctx->window.width,
-                                                               ctx->window.height); /* resize ctx->window */
-                                               set_transparent_background(ctx->window.window);
-#ifdef HAVE_XDBE
-                                               /* swap buffers */
-                                               xdbe_swap_buffers();
-#endif
+       // Passes the varargs along to vsnprintf
+       va_start(argp, width);
+       vsnprintf(tempbuf, size, format, argp);
+       va_end(argp);
 
-                                               changed++;
-#ifdef HAVE_LUA
-                                               /* update lua ctx->window globals */
-                                               llua_update_window_table(ctx->text_start_x, ctx->text_start_y, ctx->text_width, ctx->text_height);
-#endif /* HAVE_LUA */
-                                       }
+       switch (use_spacer) {
+               case NO_SPACER:
+                       len = snprintf(buf, size, "%s", tempbuf);
+                       break;
+               case LEFT_SPACER:
+                       len = snprintf(buf, size, "%*s", width, tempbuf);
+                       break;
+               case RIGHT_SPACER:
+                       len = snprintf(buf, size, "%-*s", width, tempbuf);
+                       break;
+       }
+       free(tempbuf);
+       return len;
+}
 
-                                       /* move ctx->window if it isn't in right position */
-                                       if (!ctx->fixed_pos && (ctx->window.x != wx || ctx->window.y != wy)) {
-                                               XMoveWindow(display, ctx->window.window, ctx->window.x, ctx->window.y);
-                                               changed++;
-                                       }
+/* print percentage values
+ *
+ * - i.e., unsigned values between 0 and 100
+ * - respect the value of pad_percents */
+static int percent_print(char *buf, int size, unsigned value)
+{
+       return spaced_print(buf, size, "%u", pad_percents, value);
+}
 
-                                       /* update struts */
-                                       if (changed && ctx->window.type == TYPE_PANEL) {
-                                               int sidenum = -1;
+/* converts from bytes to human readable format (K, M, G, T)
+ *
+ * The algorithm always divides by 1024, as unit-conversion of byte
+ * counts suggests. But for output length determination we need to
+ * compare with 1000 here, as we print in decimal form. */
+static void human_readable(long long num, char *buf, int size)
+{
+       const char **suffix = suffixes;
+       float fnum;
+       int precision;
+       int width;
+       const char *format;
 
-                                               fprintf(stderr, PACKAGE_NAME": defining struts\n");
-                                               fflush(stderr);
+       /* Possibly just output as usual, for example for stdout usage */
+       if (!format_human_readable) {
+               spaced_print(buf, size, "%d", 6, round_to_int(num));
+               return;
+       }
+       if (short_units) {
+               width = 5;
+               format = "%.*f%.1s";
+       } else {
+               width = 7;
+               format = "%.*f%-3s";
+       }
 
-                                               switch (ctx->text_alignment) {
-                                                       case TOP_LEFT:
-                                                       case TOP_RIGHT:
-                                                       case TOP_MIDDLE:
-                                                               {
-                                                                       sidenum = 2;
-                                                                       break;
-                                                               }
-                                                       case BOTTOM_LEFT:
-                                                       case BOTTOM_RIGHT:
-                                                       case BOTTOM_MIDDLE:
-                                                               {
-                                                                       sidenum = 3;
-                                                                       break;
-                                                               }
-                                                       case MIDDLE_LEFT:
-                                                               {
-                                                                       sidenum = 0;
-                                                                       break;
-                                                               }
-                                                       case MIDDLE_RIGHT:
-                                                               {
-                                                                       sidenum = 1;
-                                                                       break;
-                                                               }
-                                               }
+       if (llabs(num) < 1000LL) {
+               spaced_print(buf, size, format, width, 0, (float)num, *suffix);
+               return;
+       }
 
-                                               set_struts(sidenum);
-                                       }
-                               }
-#endif
+       while (llabs(num / 1024) >= 1000LL && **(suffix + 2)) {
+               num /= 1024;
+               suffix++;
+       }
 
-                               clear_text(ctx, 1);
+       suffix++;
+       fnum = num / 1024.0;
 
-#ifdef HAVE_XDBE
-                               if (use_xdbe) {
-                                       XRectangle r;
+       /* fnum should now be < 1000, so looks like 'AAA.BBBBB'
+        *
+        * The goal is to always have a significance of 3, by
+        * adjusting the decimal part of the number. Sample output:
+        *  123MiB
+        * 23.4GiB
+        * 5.12B   
+        * so the point of alignment resides between number and unit. The
+        * upside of this is that there is minimal padding necessary, though
+        * there should be a way to make alignment take place at the decimal
+        * dot (then with fixed width decimal part). 
+        *
+        * Note the repdigits below: when given a precision value, printf()
+        * rounds the float to it, not just cuts off the remaining digits. So
+        * e.g. 99.95 with a precision of 1 gets 100.0, which again should be
+        * printed with a precision of 0. Yay. */
 
-                                       r.x = ctx->text_start_x - ctx->window.border_inner_margin - ctx->window.border_outer_margin - ctx->window.border_width;
-                                       r.y = ctx->text_start_y - ctx->window.border_inner_margin - ctx->window.border_outer_margin - ctx->window.border_width;
-                                       r.width = ctx->text_width + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2;
-                                       r.height = ctx->text_height + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2;
-                                       XUnionRectWithRegion(&r, ctx->window.region, ctx->window.region);
-                               }
-#endif
-                       }
+       precision = 0;          /* print 100-999 without decimal part */
+       if (fnum < 99.95)
+               precision = 1;  /* print 10-99 with one decimal place */
+       if (fnum < 9.995)
+               precision = 2;  /* print 0-9 with two decimal places */
 
-                       /* handle X events */
-                       while (XPending(display)) {
-                               XEvent ev;
+       spaced_print(buf, size, format, width, precision, fnum, *suffix);
+}
 
-                               XNextEvent(display, &ev);
-                               switch (ev.type) {
-                                       case Expose:
-                                       {
-                                               XRectangle r;
-                                               r.x = ev.xexpose.x;
-                                               r.y = ev.xexpose.y;
-                                               r.width = ev.xexpose.width;
-                                               r.height = ev.xexpose.height;
-                                               XUnionRectWithRegion(&r, ctx->window.region, ctx->window.region);
-                                               break;
-                                       }
+/* global object list root element */
+static struct text_object global_root_object;
 
-                                       case PropertyNotify:
-                                       {
-                                               if ( ev.xproperty.state == PropertyNewValue ) {
-                                                       get_x11_desktop_info( ev.xproperty.display, ev.xproperty.atom );
-                                               }
-                                               break;
-                                       }
+//our own implementation of popen, the difference : the value of 'childpid' will be filled with
+//the pid of the running 'command'. This is useful if want to kill it when it hangs while reading
+//or writing to it. We have to kill it because pclose will wait until the process dies by itself
+FILE* pid_popen(const char *command, const char *mode, pid_t *child) {
+       int ends[2];
+       int parentend, childend;
 
-#ifdef OWN_WINDOW
-                                       case ReparentNotify:
-                                               /* set background to ParentRelative for all parents */
-                                               if (ctx->own_window) {
-                                                       set_transparent_background(ctx->window.window);
-                                               }
-                                               break;
+       //by running pipe after the strcmp's we make sure that we don't have to create a pipe
+       //and close the ends if mode is something illegal
+       if(strcmp(mode, "r") == 0) {
+               if(pipe(ends) != 0) {
+                       return NULL;
+               }
+               parentend = ends[0];
+               childend = ends[1];
+       } else if(strcmp(mode, "w") == 0) {
+               if(pipe(ends) != 0) {
+                       return NULL;
+               }
+               parentend = ends[1];
+               childend = ends[0];
+       } else {
+               return NULL;
+       }
+       *child = fork();
+       if(*child == -1) {
+               close(parentend);
+               close(childend);
+               return NULL;
+       } else if(*child > 0) {
+               close(childend);
+               waitpid(*child, NULL, 0);
+       } else {
+               //don't read from both stdin and pipe or write to both stdout and pipe
+               if(childend == ends[0]) {
+                       close(0);
+               } else {
+                       close(1);
+               }
+               dup(childend);  //by dupping childend, the returned fd will have close-on-exec turned off
+               execl("/bin/sh", "sh", "-c", command, (char *) NULL);
+               _exit(EXIT_FAILURE); //child should die here, (normally execl will take care of this but it can fail) 
+       }
+       return fdopen(parentend, mode);
+}
 
-                                       case ConfigureNotify:
-                                               if (ctx->own_window) {
-                                                       /* if ctx->window size isn't what expected, set fixed size */
-                                                       if (ev.xconfigure.width != ctx->window.width
-                                                                       || ev.xconfigure.height != ctx->window.height) {
-                                                               if (ctx->window.width != 0 && ctx->window.height != 0) {
-                                                                       ctx->fixed_size = 1;
-                                                               }
+static inline void read_exec(const char *data, char *buf, const int size)
+{
+       FILE *fp;
+
+       alarm(update_interval);
+       fp = pid_popen(data, "r", &childpid);
+       if(fp) {
+               int length;
+
+               length = fread(buf, 1, size, fp);
+               pclose(fp);
+               buf[length] = '\0';
+               if (length > 0 && buf[length - 1] == '\n') {
+                       buf[length - 1] = '\0';
+               }
+       } else {
+               buf[0] = '\0';
+       }
+       alarm(0);
+}
+
+void do_read_exec(const char *data, char *buf, const int size)
+{
+       read_exec(data, buf, size);
+}
+
+void *threaded_exec(void *) __attribute__((noreturn));
+
+void *threaded_exec(void *arg)
+{
+       char *buff, *p2;
+       struct text_object *obj = (struct text_object *)arg;
+
+       while (1) {
+               buff = malloc(text_buffer_size);
+               read_exec(obj->data.texeci.cmd, buff,
+                       text_buffer_size);
+               p2 = buff;
+               while (*p2) {
+                       if (*p2 == '\001') {
+                               *p2 = ' ';
+                       }
+                       p2++;
+               }
+               timed_thread_lock(obj->data.texeci.p_timed_thread);
+               strncpy(obj->data.texeci.buffer, buff, text_buffer_size);
+               timed_thread_unlock(obj->data.texeci.p_timed_thread);
+               free(buff);
+               if (timed_thread_test(obj->data.texeci.p_timed_thread, 0)) {
+                       timed_thread_exit(obj->data.texeci.p_timed_thread);
+               }
+       }
+       /* never reached */
+}
+
+static long current_text_color;
+
+void set_current_text_color(long colour)
+{
+       current_text_color = colour;
+}
+
+long get_current_text_color(void)
+{
+       return current_text_color;
+}
+
+//adds newstring to to the tree unless you can already see it when travelling back.
+//if it's possible to attach it then it returns a pointer to the leaf, else it returns NULL
+struct conftree* conftree_add(struct conftree* previous, const char* newstring) {
+       struct conftree* node;
+       struct conftree* node2;
+
+       for(node = previous; node != NULL; node = node->back) {
+               if(strcmp(node->string, newstring) == 0) {
+                       return NULL;
+               }
+       }
+       node = malloc(sizeof(struct conftree));
+       if (previous != NULL) {
+               if(previous->vert_next == NULL) {
+                       previous->vert_next = node;
+               } else {
+                       for(node2 = previous->vert_next; node2->horz_next != NULL; node2 = node2->horz_next ) { }
+                       node2->horz_next = node;
+               }
+       }
+       node->string = strdup(newstring);
+       node->horz_next = NULL;
+       node->vert_next = NULL;
+       node->back = previous;
+       return node;
+}
+
+void conftree_empty(struct conftree* tree) {
+       if(tree) {
+               conftree_empty(tree->horz_next);
+               conftree_empty(tree->vert_next);
+               free(tree->string);
+               free(tree);
+       }
+}
+
+struct conftree *currentconffile;
+
+static void extract_variable_text(const char *p)
+{
+       free_text_objects(&global_root_object, 0);
+       if (tmpstring1) {
+               free(tmpstring1);
+               tmpstring1 = 0;
+       }
+       if (tmpstring2) {
+               free(tmpstring2);
+               tmpstring2 = 0;
+       }
+       if (text_buffer) {
+               free(text_buffer);
+               text_buffer = 0;
+       }
+
+       extract_variable_text_internal(&global_root_object, p);
+}
+
+void parse_conky_vars(struct text_object *root, const char *txt, char *p, struct information *cur)
+{
+       extract_variable_text_internal(root, txt);
+       generate_text_internal(p, max_user_text, *root, cur);
+}
+
+static inline struct mail_s *ensure_mail_thread(struct text_object *obj,
+               void *thread(void *), const char *text)
+{
+       if (obj->char_b && info.mail) {
+               // this means we use info
+               if (!info.mail->p_timed_thread) {
+                       info.mail->p_timed_thread =
+                               timed_thread_create(thread,
+                                               (void *) info.mail, info.mail->interval * 1000000);
+                       if (!info.mail->p_timed_thread) {
+                               NORM_ERR("Error creating %s timed thread", text);
+                       }
+                       timed_thread_register(info.mail->p_timed_thread,
+                                       &info.mail->p_timed_thread);
+                       if (timed_thread_run(info.mail->p_timed_thread)) {
+                               NORM_ERR("Error running %s timed thread", text);
+                       }
+               }
+               return info.mail;
+       } else if (obj->data.mail) {
+               // this means we use obj
+               if (!obj->data.mail->p_timed_thread) {
+                       obj->data.mail->p_timed_thread =
+                               timed_thread_create(thread,
+                                               (void *) obj->data.mail,
+                                               obj->data.mail->interval * 1000000);
+                       if (!obj->data.mail->p_timed_thread) {
+                               NORM_ERR("Error creating %s timed thread", text);
+                       }
+                       timed_thread_register(obj->data.mail->p_timed_thread,
+                                       &obj->data.mail->p_timed_thread);
+                       if (timed_thread_run(obj->data.mail->p_timed_thread)) {
+                               NORM_ERR("Error running %s timed thread", text);
+                       }
+               }
+               return obj->data.mail;
+       } else if (!obj->a) {
+               // something is wrong, warn once then stop
+               NORM_ERR("There's a problem with your mail settings.  "
+                               "Check that the global mail settings are properly defined"
+                               " (line %li).", obj->line);
+               obj->a++;
+       }
+       return NULL;
+}
+
+char *format_time(unsigned long timeval, const int width)
+{
+       char buf[10];
+       unsigned long nt;       // narrow time, for speed on 32-bit
+       unsigned cc;            // centiseconds
+       unsigned nn;            // multi-purpose whatever
+
+       nt = timeval;
+       cc = nt % 100;          // centiseconds past second
+       nt /= 100;                      // total seconds
+       nn = nt % 60;           // seconds past the minute
+       nt /= 60;                       // total minutes
+       if (width >= snprintf(buf, sizeof buf, "%lu:%02u.%02u",
+                               nt, nn, cc)) {
+               return strndup(buf, text_buffer_size);
+       }
+       if (width >= snprintf(buf, sizeof buf, "%lu:%02u", nt, nn)) {
+               return strndup(buf, text_buffer_size);
+       }
+       nn = nt % 60;           // minutes past the hour
+       nt /= 60;                       // total hours
+       if (width >= snprintf(buf, sizeof buf, "%lu,%02u", nt, nn)) {
+               return strndup(buf, text_buffer_size);
+       }
+       nn = nt;                        // now also hours
+       if (width >= snprintf(buf, sizeof buf, "%uh", nn)) {
+               return strndup(buf, text_buffer_size);
+       }
+       nn /= 24;                       // now days
+       if (width >= snprintf(buf, sizeof buf, "%ud", nn)) {
+               return strndup(buf, text_buffer_size);
+       }
+       nn /= 7;                        // now weeks
+       if (width >= snprintf(buf, sizeof buf, "%uw", nn)) {
+               return strndup(buf, text_buffer_size);
+       }
+       // well shoot, this outta' fit...
+       return strndup("<inf>", text_buffer_size);
+}
+
+//remove backspaced chars, example: "dog^H^H^Hcat" becomes "cat"
+//string has to end with \0 and it's length should fit in a int
+#define BACKSPACE 8
+void remove_deleted_chars(char *string){
+       int i = 0;
+       while(string[i] != 0){
+               if(string[i] == BACKSPACE){
+                       if(i != 0){
+                               strcpy( &(string[i-1]), &(string[i+1]) );
+                               i--;
+                       }else strcpy( &(string[i]), &(string[i+1]) ); //necessary for ^H's at the start of a string
+               }else i++;
+       }
+}
+
+static inline void format_media_player_time(char *buf, const int size,
+               int seconds)
+{
+       int days, hours, minutes;
+
+       days = seconds / (24 * 60 * 60);
+       seconds %= (24 * 60 * 60);
+       hours = seconds / (60 * 60);
+       seconds %= (60 * 60);
+       minutes = seconds / 60;
+       seconds %= 60;
+
+       if (days > 0) {
+               snprintf(buf, size, "%i days %i:%02i:%02i", days,
+                               hours, minutes, seconds);
+       } else if (hours > 0) {
+               snprintf(buf, size, "%i:%02i:%02i", hours, minutes,
+                               seconds);
+       } else {
+               snprintf(buf, size, "%i:%02i", minutes, seconds);
+       }
+}
+
+static inline double get_barnum(char *buf)
+{
+       char *c = buf;
+       double barnum;
+
+       while (*c) {
+               if (*c == '\001') {
+                       *c = ' ';
+               }
+               c++;
+       }
+
+       if (sscanf(buf, "%lf", &barnum) == 0) {
+               NORM_ERR("reading exec value failed (perhaps it's not the "
+                               "correct format?)");
+               return -1;
+       }
+       if (barnum > 100.0 || barnum < 0.0) {
+               NORM_ERR("your exec value is not between 0 and 100, "
+                               "therefore it will be ignored");
+               return -1;
+       }
+       return barnum;
+}
+
+/* substitutes all occurrences of '\n' with SECRIT_MULTILINE_CHAR, which allows
+ * multiline objects like $exec work with $align[rc] and friends
+ */
+void substitute_newlines(char *p, long l)
+{
+       char *s = p;
+       if (l < 0) return;
+       while (p && *p && p < s + l) {
+               if (*p == '\n') {
+                       /* only substitute if it's not the last newline */
+                       *p = SECRIT_MULTILINE_CHAR;
+               }
+               p++;
+       }
+}
+
+static void generate_text_internal(char *p, int p_max_size,
+               struct text_object root, struct information *cur)
+{
+       struct text_object *obj;
+#ifdef X11
+       int need_to_load_fonts = 0;
+#endif /* X11 */
+
+       /* for the OBJ_top* handler */
+       struct process **needed = 0;
+
+#ifdef HAVE_ICONV
+       char buff_in[p_max_size];
+       buff_in[0] = 0;
+       set_iconv_converting(0);
+#endif /* HAVE_ICONV */
+
+       p[0] = 0;
+       obj = root.next;
+       while (obj && p_max_size > 0) {
+               needed = 0; /* reset for top stuff */
+
+/* IFBLOCK jumping algorithm
+ *
+ * This is easier as it looks like:
+ * - each IF checks it's condition
+ *   - on FALSE: call DO_JUMP
+ *   - on TRUE: don't care
+ * - each ELSE calls DO_JUMP unconditionally
+ * - each ENDIF is silently being ignored
+ *
+ * Why this works:
+ * DO_JUMP overwrites the "obj" variable of the loop and sets it to the target
+ * (i.e. the corresponding ELSE or ENDIF). After that, processing for the given
+ * object can continue, free()ing stuff e.g., then the for-loop does the rest: as
+ * regularly, "obj" is being updated to point to obj->next, so object parsing
+ * continues right after the corresponding ELSE or ENDIF. This means that if we
+ * find an ELSE, it's corresponding IF must not have jumped, so we need to jump
+ * always. If we encounter an ENDIF, it's corresponding IF or ELSE has not
+ * jumped, and there is nothing to do.
+ */
+#define DO_JUMP { \
+       DBGP2("jumping"); \
+       obj = obj->data.ifblock.next; \
+}
+
+#define OBJ(a) break; case OBJ_##a:
+
+               switch (obj->type) {
+                       default:
+                               NORM_ERR("not implemented obj type %d", obj->type);
+                       OBJ(read_tcp) {
+                               int sock, received;
+                               struct sockaddr_in addr;
+                               struct hostent* he = gethostbyname(obj->data.read_tcp.host);
+                               if(he != NULL) {
+                                       sock = socket(he->h_addrtype, SOCK_STREAM, 0);
+                                       if(sock != -1) {
+                                               memset(&addr, 0, sizeof(addr));
+                                               addr.sin_family = AF_INET;
+                                               addr.sin_port = obj->data.read_tcp.port;
+                                               memcpy(&addr.sin_addr, he->h_addr, he->h_length);
+                                               if (connect(sock, (struct sockaddr*)&addr, sizeof(struct sockaddr)) == 0) {
+                                                       fd_set readfds;
+                                                       struct timeval tv;
+                                                       FD_ZERO(&readfds);
+                                                       FD_SET(sock, &readfds);
+                                                       tv.tv_sec = 1;
+                                                       tv.tv_usec = 0;
+                                                       if(select(sock + 1, &readfds, NULL, NULL, &tv) > 0){
+                                                               received = recv(sock, p, p_max_size, 0);
+                                                               p[received] = 0;
+                                                       }
+                                                       close(sock);
+                                               } else {
+                                                       NORM_ERR("read_tcp: Couldn't create a connection");
+                                               }
+                                       }else{
+                                               NORM_ERR("read_tcp: Couldn't create a socket");
+                                       }
+                               }else{
+                                       NORM_ERR("read_tcp: Problem with resolving the hostname");
+                               }
+                       }
+#ifndef __OpenBSD__
+                       OBJ(acpitemp) {
+                               temp_print(p, p_max_size, get_acpi_temperature(obj->data.i), TEMP_CELSIUS);
+                       }
+#endif /* !__OpenBSD__ */
+                       OBJ(freq) {
+                               if (obj->a) {
+                                       obj->a = get_freq(p, p_max_size, "%.0f", 1,
+                                                       obj->data.cpu_index);
+                               }
+                       }
+                       OBJ(freq_g) {
+                               if (obj->a) {
+#ifndef __OpenBSD__
+                                       obj->a = get_freq(p, p_max_size, "%'.2f", 1000,
+                                                       obj->data.cpu_index);
+#else
+                                       /* OpenBSD has no such flag (SUSv2) */
+                                       obj->a = get_freq(p, p_max_size, "%.2f", 1000,
+                                                       obj->data.cpu_index);
+#endif /* __OpenBSD */
+                               }
+                       }
+#if defined(__linux__)
+                       OBJ(voltage_mv) {
+                               if (obj->a) {
+                                       obj->a = get_voltage(p, p_max_size, "%.0f", 1,
+                                                       obj->data.cpu_index);
+                               }
+                       }
+                       OBJ(voltage_v) {
+                               if (obj->a) {
+                                       obj->a = get_voltage(p, p_max_size, "%'.3f", 1000,
+                                                       obj->data.cpu_index);
+                               }
+                       }
+
+#ifdef HAVE_IWLIB
+                       OBJ(wireless_essid) {
+                               snprintf(p, p_max_size, "%s", obj->data.net->essid);
+                       }
+                       OBJ(wireless_mode) {
+                               snprintf(p, p_max_size, "%s", obj->data.net->mode);
+                       }
+                       OBJ(wireless_bitrate) {
+                               snprintf(p, p_max_size, "%s", obj->data.net->bitrate);
+                       }
+                       OBJ(wireless_ap) {
+                               snprintf(p, p_max_size, "%s", obj->data.net->ap);
+                       }
+                       OBJ(wireless_link_qual) {
+                               spaced_print(p, p_max_size, "%d", 4,
+                                               obj->data.net->link_qual);
+                       }
+                       OBJ(wireless_link_qual_max) {
+                               spaced_print(p, p_max_size, "%d", 4,
+                                               obj->data.net->link_qual_max);
+                       }
+                       OBJ(wireless_link_qual_perc) {
+                               if (obj->data.net->link_qual_max > 0) {
+                                       spaced_print(p, p_max_size, "%.0f", 5,
+                                                       (double) obj->data.net->link_qual /
+                                                       obj->data.net->link_qual_max * 100);
+                               } else {
+                                       spaced_print(p, p_max_size, "unk", 5);
+                               }
+                       }
+                       OBJ(wireless_link_bar) {
+#ifdef X11
+                               if(output_methods & TO_X) {
+                                       new_bar(p, obj->a, obj->b, ((double) obj->data.net->link_qual /
+                                               obj->data.net->link_qual_max) * 255.0);
+                               }else{
+#endif /* X11 */
+                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
+                                       new_bar_in_shell(p, p_max_size, ((double) obj->data.net->link_qual /
+                                               obj->data.net->link_qual_max) * 100.0, obj->a);
+#ifdef X11
+                               }
+#endif /* X11 */
+                       }
+#endif /* HAVE_IWLIB */
+
+#endif /* __linux__ */
+
+#ifndef __OpenBSD__
+                       OBJ(adt746xcpu) {
+                               get_adt746x_cpu(p, p_max_size);
+                       }
+                       OBJ(adt746xfan) {
+                               get_adt746x_fan(p, p_max_size);
+                       }
+                       OBJ(acpifan) {
+                               get_acpi_fan(p, p_max_size);
+                       }
+                       OBJ(acpiacadapter) {
+                               get_acpi_ac_adapter(p, p_max_size);
+                       }
+                       OBJ(battery) {
+                               get_battery_stuff(p, p_max_size, obj->data.s, BATTERY_STATUS);
+                       }
+                       OBJ(battery_time) {
+                               get_battery_stuff(p, p_max_size, obj->data.s, BATTERY_TIME);
+                       }
+                       OBJ(battery_percent) {
+                               percent_print(p, p_max_size, get_battery_perct(obj->data.s));
+                       }
+                       OBJ(battery_bar) {
+#ifdef X11
+                               if(output_methods & TO_X) {
+                                       new_bar(p, obj->a, obj->b, get_battery_perct_bar(obj->data.s));
+                               }else{
+#endif /* X11 */
+                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
+                                       new_bar_in_shell(p, p_max_size, get_battery_perct_bar(obj->data.s) / 2.55, obj->a);
+#ifdef X11
+                               }
+#endif /* X11 */
+                       }
+                       OBJ(battery_short) {
+                               get_battery_short_status(p, p_max_size, obj->data.s);
+                       }
+#endif /* __OpenBSD__ */
+
+                       OBJ(buffers) {
+                               human_readable(cur->buffers * 1024, p, 255);
+                       }
+                       OBJ(cached) {
+                               human_readable(cur->cached * 1024, p, 255);
+                       }
+                       OBJ(cpu) {
+                               if (obj->data.cpu_index > info.cpu_count) {
+                                       NORM_ERR("obj->data.cpu_index %i info.cpu_count %i",
+                                                       obj->data.cpu_index, info.cpu_count);
+                                       CRIT_ERR(NULL, NULL, "attempting to use more CPUs than you have!");
+                               }
+                               percent_print(p, p_max_size,
+                                             round_to_int(cur->cpu_usage[obj->data.cpu_index] * 100.0));
+                       }
+#ifdef X11
+                       OBJ(cpugauge)
+                               new_gauge(p, obj->a, obj->b,
+                                               round_to_int(cur->cpu_usage[obj->data.cpu_index] * 255.0));
+#endif /* X11 */
+                       OBJ(cpubar) {
+#ifdef X11
+                               if(output_methods & TO_X) {
+                                       new_bar(p, obj->a, obj->b,
+                                               round_to_int(cur->cpu_usage[obj->data.cpu_index] * 255.0));
+                               }else{
+#endif /* X11 */
+                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
+                                       new_bar_in_shell(p, p_max_size, round_to_int(cur->cpu_usage[obj->data.cpu_index] * 100), obj->a);
+#ifdef X11
+                               }
+#endif /* X11 */
+                       }
+#ifdef X11
+                       OBJ(cpugraph) {
+                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
+                                               round_to_int(cur->cpu_usage[obj->data.cpu_index] * 100),
+                                               100, 1, obj->char_a, obj->char_b);
+                       }
+                       OBJ(loadgraph) {
+                               new_graph(p, obj->a, obj->b, obj->c, obj->d, cur->loadavg[0],
+                                               obj->e, 1, obj->char_a, obj->char_b);
+                       }
+#endif /* X11 */
+                       OBJ(color) {
+                               new_fg(p, obj->data.l);
+                       }
+#ifdef X11
+                       OBJ(color0) {
+                               new_fg(p, color0);
+                       }
+                       OBJ(color1) {
+                               new_fg(p, color1);
+                       }
+                       OBJ(color2) {
+                               new_fg(p, color2);
+                       }
+                       OBJ(color3) {
+                               new_fg(p, color3);
+                       }
+                       OBJ(color4) {
+                               new_fg(p, color4);
+                       }
+                       OBJ(color5) {
+                               new_fg(p, color5);
+                       }
+                       OBJ(color6) {
+                               new_fg(p, color6);
+                       }
+                       OBJ(color7) {
+                               new_fg(p, color7);
+                       }
+                       OBJ(color8) {
+                               new_fg(p, color8);
+                       }
+                       OBJ(color9) {
+                               new_fg(p, color9);
+                       }
+#endif /* X11 */
+                       OBJ(conky_version) {
+                               snprintf(p, p_max_size, "%s", VERSION);
+                       }
+                       OBJ(conky_build_date) {
+                               snprintf(p, p_max_size, "%s", BUILD_DATE);
+                       }
+                       OBJ(conky_build_arch) {
+                               snprintf(p, p_max_size, "%s", BUILD_ARCH);
+                       }
+#if defined(__linux__)
+                       OBJ(disk_protect) {
+                               snprintf(p, p_max_size, "%s",
+                                               get_disk_protect_queue(obj->data.s));
+                       }
+                       OBJ(i8k_version) {
+                               snprintf(p, p_max_size, "%s", i8k.version);
+                       }
+                       OBJ(i8k_bios) {
+                               snprintf(p, p_max_size, "%s", i8k.bios);
+                       }
+                       OBJ(i8k_serial) {
+                               snprintf(p, p_max_size, "%s", i8k.serial);
+                       }
+                       OBJ(i8k_cpu_temp) {
+                               int cpu_temp;
+
+                               sscanf(i8k.cpu_temp, "%d", &cpu_temp);
+                               temp_print(p, p_max_size, (double)cpu_temp, TEMP_CELSIUS);
+                       }
+                       OBJ(i8k_left_fan_status) {
+                               int left_fan_status;
+
+                               sscanf(i8k.left_fan_status, "%d", &left_fan_status);
+                               if (left_fan_status == 0) {
+                                       snprintf(p, p_max_size, "off");
+                               }
+                               if (left_fan_status == 1) {
+                                       snprintf(p, p_max_size, "low");
+                               }
+                               if (left_fan_status == 2) {
+                                       snprintf(p, p_max_size, "high");
+                               }
+                       }
+                       OBJ(i8k_right_fan_status) {
+                               int right_fan_status;
+
+                               sscanf(i8k.right_fan_status, "%d", &right_fan_status);
+                               if (right_fan_status == 0) {
+                                       snprintf(p, p_max_size, "off");
+                               }
+                               if (right_fan_status == 1) {
+                                       snprintf(p, p_max_size, "low");
+                               }
+                               if (right_fan_status == 2) {
+                                       snprintf(p, p_max_size, "high");
+                               }
+                       }
+                       OBJ(i8k_left_fan_rpm) {
+                               snprintf(p, p_max_size, "%s", i8k.left_fan_rpm);
+                       }
+                       OBJ(i8k_right_fan_rpm) {
+                               snprintf(p, p_max_size, "%s", i8k.right_fan_rpm);
+                       }
+                       OBJ(i8k_ac_status) {
+                               int ac_status;
+
+                               sscanf(i8k.ac_status, "%d", &ac_status);
+                               if (ac_status == -1) {
+                                       snprintf(p, p_max_size, "disabled (read i8k docs)");
+                               }
+                               if (ac_status == 0) {
+                                       snprintf(p, p_max_size, "off");
+                               }
+                               if (ac_status == 1) {
+                                       snprintf(p, p_max_size, "on");
+                               }
+                       }
+                       OBJ(i8k_buttons_status) {
+                               snprintf(p, p_max_size, "%s", i8k.buttons_status);
+                       }
+#if defined(IBM)
+                       OBJ(ibm_fan) {
+                               get_ibm_acpi_fan(p, p_max_size);
+                       }
+                       OBJ(ibm_temps) {
+                               get_ibm_acpi_temps();
+                               temp_print(p, p_max_size,
+                                          ibm_acpi.temps[obj->data.sensor], TEMP_CELSIUS);
+                       }
+                       OBJ(ibm_volume) {
+                               get_ibm_acpi_volume(p, p_max_size);
+                       }
+                       OBJ(ibm_brightness) {
+                               get_ibm_acpi_brightness(p, p_max_size);
+                       }
+#endif /* IBM */
+                       /* information from sony_laptop kernel module
+                        * /sys/devices/platform/sony-laptop */
+                       OBJ(sony_fanspeed) {
+                               get_sony_fanspeed(p, p_max_size);
+                       }
+                       OBJ(if_gw) {
+                               if (!cur->gw_info.count) {
+                                       DO_JUMP;
+                               }
+                       }
+                       OBJ(gw_iface) {
+                               snprintf(p, p_max_size, "%s", cur->gw_info.iface);
+                       }
+                       OBJ(gw_ip) {
+                               snprintf(p, p_max_size, "%s", cur->gw_info.ip);
+                       }
+                       OBJ(laptop_mode) {
+                               snprintf(p, p_max_size, "%d", get_laptop_mode());
+                       }
+                       OBJ(pb_battery) {
+                               get_powerbook_batt_info(p, p_max_size, obj->data.i);
+                       }
+#endif /* __linux__ */
+#if (defined(__FreeBSD__) || defined(__linux__))
+                       OBJ(if_up) {
+                               if ((obj->data.ifblock.s)
+                                               && (!interface_up(obj->data.ifblock.s))) {
+                                       DO_JUMP;
+                               }
+                       }
+#endif
+#ifdef __OpenBSD__
+                       OBJ(obsd_sensors_temp) {
+                               obsd_sensors.device = sensor_device;
+                               update_obsd_sensors();
+                               temp_print(p, p_max_size,
+                                          obsd_sensors.temp[obsd_sensors.device][obj->data.sensor],
+                                          TEMP_CELSIUS);
+                       }
+                       OBJ(obsd_sensors_fan) {
+                               obsd_sensors.device = sensor_device;
+                               update_obsd_sensors();
+                               snprintf(p, p_max_size, "%d",
+                                               obsd_sensors.fan[obsd_sensors.device][obj->data.sensor]);
+                       }
+                       OBJ(obsd_sensors_volt) {
+                               obsd_sensors.device = sensor_device;
+                               update_obsd_sensors();
+                               snprintf(p, p_max_size, "%.2f",
+                                               obsd_sensors.volt[obsd_sensors.device][obj->data.sensor]);
+                       }
+                       OBJ(obsd_vendor) {
+                               get_obsd_vendor(p, p_max_size);
+                       }
+                       OBJ(obsd_product) {
+                               get_obsd_product(p, p_max_size);
+                       }
+#endif /* __OpenBSD__ */
+#ifdef X11
+                       OBJ(font) {
+                               new_font(p, obj->data.s);
+                               need_to_load_fonts = 1;
+                       }
+#endif /* X11 */
+                       /* TODO: move this correction from kB to kB/s elsewhere
+                        * (or get rid of it??) */
+                       OBJ(diskio) {
+                               human_readable((obj->data.diskio->current / update_interval) * 1024LL,
+                                               p, p_max_size);
+                       }
+                       OBJ(diskio_write) {
+                               human_readable((obj->data.diskio->current_write / update_interval) * 1024LL,
+                                               p, p_max_size);
+                       }
+                       OBJ(diskio_read) {
+                               human_readable((obj->data.diskio->current_read / update_interval) * 1024LL,
+                                               p, p_max_size);
+                       }
+#ifdef X11
+                       OBJ(diskiograph) {
+                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
+                                         obj->data.diskio->current, obj->e, 1, obj->char_a, obj->char_b);
+                       }
+                       OBJ(diskiograph_read) {
+                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
+                                         obj->data.diskio->current_read, obj->e, 1, obj->char_a, obj->char_b);
+                       }
+                       OBJ(diskiograph_write) {
+                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
+                                         obj->data.diskio->current_write, obj->e, 1, obj->char_a, obj->char_b);
+                       }
+#endif /* X11 */
+                       OBJ(downspeed) {
+                               human_readable(obj->data.net->recv_speed, p, 255);
+                       }
+                       OBJ(downspeedf) {
+                               spaced_print(p, p_max_size, "%.1f", 8,
+                                               obj->data.net->recv_speed / 1024.0);
+                       }
+#ifdef X11
+                       OBJ(downspeedgraph) {
+                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
+                                       obj->data.net->recv_speed / 1024.0, obj->e, 1, obj->char_a, obj->char_b);
+                       }
+#endif /* X11 */
+                       OBJ(else) {
+                               /* Since we see you, you're if has not jumped.
+                                * Do Ninja jump here: without leaving traces.
+                                * This is to prevent us from stale jumped flags.
+                                */
+                               obj = obj->data.ifblock.next;
+                               continue;
+                       }
+                       OBJ(endif) {
+                               /* harmless object, just ignore */
+                       }
+                       OBJ(addr) {
+                               if ((obj->data.net->addr.sa_data[2] & 255) == 0
+                                               && (obj->data.net->addr.sa_data[3] & 255) == 0
+                                               && (obj->data.net->addr.sa_data[4] & 255) == 0
+                                               && (obj->data.net->addr.sa_data[5] & 255) == 0) {
+                                       snprintf(p, p_max_size, "No Address");
+                               } else {
+                                       snprintf(p, p_max_size, "%u.%u.%u.%u",
+                                               obj->data.net->addr.sa_data[2] & 255,
+                                               obj->data.net->addr.sa_data[3] & 255,
+                                               obj->data.net->addr.sa_data[4] & 255,
+                                               obj->data.net->addr.sa_data[5] & 255);
+                               }
+                       }
+#if defined(__linux__)
+                       OBJ(addrs) {
+                               if (NULL != obj->data.net->addrs && strlen(obj->data.net->addrs) > 2) {
+                                       obj->data.net->addrs[strlen(obj->data.net->addrs) - 2] = 0; /* remove ", " from end of string */
+                                       strcpy(p, obj->data.net->addrs);
+                               } else {
+                                       strcpy(p, "0.0.0.0");
+                               }
+                       }
+#endif /* __linux__ */
+#if defined(IMLIB2) && defined(X11)
+                       OBJ(image) {
+                               /* doesn't actually draw anything, just queues it omp.  the
+                                * image will get drawn after the X event loop */
+                               cimlib_add_image(obj->data.s);
+                       }
+#endif /* IMLIB2 */
+                       OBJ(eval) {
+                               evaluate(obj->data.s, p);
+                       }
+                       OBJ(exec) {
+                               read_exec(obj->data.s, p, text_buffer_size);
+                               remove_deleted_chars(p);
+                       }
+                       OBJ(execp) {
+                               struct information *tmp_info;
+                               struct text_object subroot;
+
+                               read_exec(obj->data.s, p, text_buffer_size);
+
+                               tmp_info = malloc(sizeof(struct information));
+                               memcpy(tmp_info, cur, sizeof(struct information));
+                               parse_conky_vars(&subroot, p, p, tmp_info);
+
+                               free_text_objects(&subroot, 1);
+                               free(tmp_info);
+                       }
+#ifdef X11
+                       OBJ(execgauge) {
+                               double barnum;
+
+                               read_exec(obj->data.s, p, text_buffer_size);
+                               barnum = get_barnum(p); /*using the same function*/
+
+                               if (barnum >= 0.0) {
+                                       barnum /= 100;
+                                       new_gauge(p, obj->a, obj->b, round_to_int(barnum * 255.0));
+                               }
+                       }
+#endif /* X11 */
+                       OBJ(execbar) {
+                               double barnum;
+
+                               read_exec(obj->data.s, p, text_buffer_size);
+                               barnum = get_barnum(p);
+
+                               if (barnum >= 0.0) {
+#ifdef X11
+                                       if(output_methods & TO_X) {
+                                               barnum /= 100;
+                                               new_bar(p, obj->a, obj->b, round_to_int(barnum * 255.0));
+                                       }else{
+#endif /* X11 */
+                                               if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
+                                               new_bar_in_shell(p, p_max_size, barnum, obj->a);
+#ifdef X11
+                                       }
+#endif /* X11 */
+                               }
+                       }
+#ifdef X11
+                       OBJ(execgraph) {
+                               char showaslog = FALSE;
+                               char tempgrad = FALSE;
+                               double barnum;
+                               char *cmd = obj->data.s;
+
+                               if (strstr(cmd, " "TEMPGRAD) && strlen(cmd) > strlen(" "TEMPGRAD)) {
+                                       tempgrad = TRUE;
+                                       cmd += strlen(" "TEMPGRAD);
+                               }
+                               if (strstr(cmd, " "LOGGRAPH) && strlen(cmd) > strlen(" "LOGGRAPH)) {
+                                       showaslog = TRUE;
+                                       cmd += strlen(" "LOGGRAPH);
+                               }
+                               read_exec(cmd, p, text_buffer_size);
+                               barnum = get_barnum(p);
+
+                               if (barnum > 0) {
+                                       new_graph(p, obj->a, obj->b, obj->c, obj->d, round_to_int(barnum),
+                                                       100, 1, showaslog, tempgrad);
+                               }
+                       }
+#endif /* X11 */
+                       OBJ(execibar) {
+                               if (current_update_time - obj->data.execi.last_update
+                                               >= obj->data.execi.interval) {
+                                       double barnum;
+
+                                       read_exec(obj->data.execi.cmd, p, text_buffer_size);
+                                       barnum = get_barnum(p);
+
+                                       if (barnum >= 0.0) {
+                                               obj->f = barnum;
+                                       }
+                                       obj->data.execi.last_update = current_update_time;
+                               }
+#ifdef X11
+                               if(output_methods & TO_X) {
+                                       new_bar(p, obj->a, obj->b, round_to_int(obj->f * 2.55));
+                               } else {
+#endif /* X11 */
+                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
+                                       new_bar_in_shell(p, p_max_size, round_to_int(obj->f), obj->a);
+#ifdef X11
+                               }
+#endif /* X11 */
+                       }
+#ifdef X11
+                       OBJ(execigraph) {
+                               if (current_update_time - obj->data.execi.last_update
+                                               >= obj->data.execi.interval) {
+                                       double barnum;
+                                       char showaslog = FALSE;
+                                       char tempgrad = FALSE;
+                                       char *cmd = obj->data.execi.cmd;
+
+                                       if (strstr(cmd, " "TEMPGRAD) && strlen(cmd) > strlen(" "TEMPGRAD)) {
+                                               tempgrad = TRUE;
+                                               cmd += strlen(" "TEMPGRAD);
+                                       }
+                                       if (strstr(cmd, " "LOGGRAPH) && strlen(cmd) > strlen(" "LOGGRAPH)) {
+                                               showaslog = TRUE;
+                                               cmd += strlen(" "LOGGRAPH);
+                                       }
+                                       obj->char_a = showaslog;
+                                       obj->char_b = tempgrad;
+                                       read_exec(cmd, p, text_buffer_size);
+                                       barnum = get_barnum(p);
+
+                                       if (barnum >= 0.0) {
+                                               obj->f = barnum;
+                                       }
+                                       obj->data.execi.last_update = current_update_time;
+                               }
+                               new_graph(p, obj->a, obj->b, obj->c, obj->d, (int) (obj->f), 100, 1, obj->char_a, obj->char_b);
+                       }
+                       OBJ(execigauge) {
+                               if (current_update_time - obj->data.execi.last_update
+                                               >= obj->data.execi.interval) {
+                                       double barnum;
+
+                                       read_exec(obj->data.execi.cmd, p, text_buffer_size);
+                                       barnum = get_barnum(p);
+
+                                       if (barnum >= 0.0) {
+                                               obj->f = 255 * barnum / 100.0;
+                                       }
+                                       obj->data.execi.last_update = current_update_time;
+                               }
+                               new_gauge(p, obj->a, obj->b, round_to_int(obj->f));
+                       }
+#endif /* X11 */
+                       OBJ(execi) {
+                               if (current_update_time - obj->data.execi.last_update
+                                               >= obj->data.execi.interval
+                                               && obj->data.execi.interval != 0) {
+                                       read_exec(obj->data.execi.cmd, obj->data.execi.buffer,
+                                               text_buffer_size);
+                                       obj->data.execi.last_update = current_update_time;
+                               }
+                               snprintf(p, text_buffer_size, "%s", obj->data.execi.buffer);
+                       }
+                       OBJ(execpi) {
+                               struct text_object subroot;
+                               struct information *tmp_info =
+                                       malloc(sizeof(struct information));
+                               memcpy(tmp_info, cur, sizeof(struct information));
+
+                               if (current_update_time - obj->data.execi.last_update
+                                               < obj->data.execi.interval
+                                               || obj->data.execi.interval == 0) {
+                                       parse_conky_vars(&subroot, obj->data.execi.buffer, p, tmp_info);
+                               } else {
+                                       char *output = obj->data.execi.buffer;
+                                       FILE *fp = pid_popen(obj->data.execi.cmd, "r", &childpid);
+                                       int length = fread(output, 1, text_buffer_size, fp);
+
+                                       pclose(fp);
+
+                                       output[length] = '\0';
+                                       if (length > 0 && output[length - 1] == '\n') {
+                                               output[length - 1] = '\0';
+                                       }
+
+                                       parse_conky_vars(&subroot, obj->data.execi.buffer, p, tmp_info);
+                                       obj->data.execi.last_update = current_update_time;
+                               }
+                               free_text_objects(&subroot, 1);
+                               free(tmp_info);
+                       }
+                       OBJ(texeci) {
+                               if (!obj->data.texeci.p_timed_thread) {
+                                       obj->data.texeci.p_timed_thread =
+                                               timed_thread_create(&threaded_exec,
+                                               (void *) obj, obj->data.texeci.interval * 1000000);
+                                       if (!obj->data.texeci.p_timed_thread) {
+                                               NORM_ERR("Error creating texeci timed thread");
+                                       }
+                                       /*
+                                        * note that we don't register this thread with the
+                                        * timed_thread list, because we destroy it manually
+                                        */
+                                       if (timed_thread_run(obj->data.texeci.p_timed_thread)) {
+                                               NORM_ERR("Error running texeci timed thread");
+                                       }
+                               } else {
+                                       timed_thread_lock(obj->data.texeci.p_timed_thread);
+                                       snprintf(p, text_buffer_size, "%s", obj->data.texeci.buffer);
+                                       timed_thread_unlock(obj->data.texeci.p_timed_thread);
+                               }
+                       }
+                       OBJ(imap_unseen) {
+                               struct mail_s *mail = ensure_mail_thread(obj, imap_thread, "imap");
+
+                               if (mail && mail->p_timed_thread) {
+                                       timed_thread_lock(mail->p_timed_thread);
+                                       snprintf(p, p_max_size, "%lu", mail->unseen);
+                                       timed_thread_unlock(mail->p_timed_thread);
+                               }
+                       }
+                       OBJ(imap_messages) {
+                               struct mail_s *mail = ensure_mail_thread(obj, imap_thread, "imap");
+
+                               if (mail && mail->p_timed_thread) {
+                                       timed_thread_lock(mail->p_timed_thread);
+                                       snprintf(p, p_max_size, "%lu", mail->messages);
+                                       timed_thread_unlock(mail->p_timed_thread);
+                               }
+                       }
+                       OBJ(pop3_unseen) {
+                               struct mail_s *mail = ensure_mail_thread(obj, pop3_thread, "pop3");
+
+                               if (mail && mail->p_timed_thread) {
+                                       timed_thread_lock(mail->p_timed_thread);
+                                       snprintf(p, p_max_size, "%lu", mail->unseen);
+                                       timed_thread_unlock(mail->p_timed_thread);
+                               }
+                       }
+                       OBJ(pop3_used) {
+                               struct mail_s *mail = ensure_mail_thread(obj, pop3_thread, "pop3");
+
+                               if (mail && mail->p_timed_thread) {
+                                       timed_thread_lock(mail->p_timed_thread);
+                                       snprintf(p, p_max_size, "%.1f",
+                                               mail->used / 1024.0 / 1024.0);
+                                       timed_thread_unlock(mail->p_timed_thread);
+                               }
+                       }
+                       OBJ(fs_bar) {
+                               if (obj->data.fs != NULL) {
+                                       if (obj->data.fs->size == 0) {
+#ifdef X11
+                                               if(output_methods & TO_X) {
+                                                       new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h, 255);
+                                               }else{
+#endif /* X11 */
+                                                       if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
+                                                       new_bar_in_shell(p, p_max_size, 100, obj->data.fsbar.w);
+#ifdef X11
+                                               }
+#endif /* X11 */
+                                       } else {
+#ifdef X11
+                                               if(output_methods & TO_X) {
+                                                       new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h,
+                                                               (int) (255 - obj->data.fsbar.fs->avail * 255 /
+                                                               obj->data.fs->size));
+                                               }else{
+#endif /* X11 */
+                                                       if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
+                                                       new_bar_in_shell(p, p_max_size,
+                                                               (int) (100 - obj->data.fsbar.fs->avail * 100 / obj->data.fs->size), obj->data.fsbar.w);
+#ifdef X11
+                                               }
+#endif /* X11 */
+                                       }
+                               }
+                       }
+                       OBJ(fs_free) {
+                               if (obj->data.fs != NULL) {
+                                       human_readable(obj->data.fs->avail, p, 255);
+                               }
+                       }
+                       OBJ(fs_free_perc) {
+                               if (obj->data.fs != NULL) {
+                                       int val = 0;
+
+                                       if (obj->data.fs->size) {
+                                               val = obj->data.fs->avail * 100 / obj->data.fs->size;
+                                       }
+
+                                       percent_print(p, p_max_size, val);
+                               }
+                       }
+                       OBJ(fs_size) {
+                               if (obj->data.fs != NULL) {
+                                       human_readable(obj->data.fs->size, p, 255);
+                               }
+                       }
+                       OBJ(fs_type) {
+                               if (obj->data.fs != NULL)
+                                       snprintf(p, p_max_size, "%s", obj->data.fs->type);
+                       }
+                       OBJ(fs_used) {
+                               if (obj->data.fs != NULL) {
+                                       human_readable(obj->data.fs->size - obj->data.fs->free, p,
+                                                       255);
+                               }
+                       }
+                       OBJ(fs_bar_free) {
+                               if (obj->data.fs != NULL) {
+                                       if (obj->data.fs->size == 0) {
+#ifdef X11
+                                               if(output_methods & TO_X) {
+                                                       new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h, 255);
+                                               }else{
+#endif /* X11 */
+                                                       if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
+                                                       new_bar_in_shell(p, p_max_size, 100, obj->data.fsbar.w);
+#ifdef X11
+                                               }
+#endif /* X11 */
+                                       } else {
+#ifdef X11
+                                               if(output_methods & TO_X) {
+                                                       new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h,
+                                                               (int) (obj->data.fsbar.fs->avail * 255 /
+                                                               obj->data.fs->size));
+                                               }else{
+#endif /* X11 */
+                                                       if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
+                                                       new_bar_in_shell(p, p_max_size,
+                                                               (int) (obj->data.fsbar.fs->avail * 100 / obj->data.fs->size), obj->data.fsbar.w);
+#ifdef X11
+                                               }
+#endif /* X11 */
+                                       }
+                               }
+                       }
+                       OBJ(fs_used_perc) {
+                               if (obj->data.fs != NULL) {
+                                       int val = 0;
+
+                                       if (obj->data.fs->size) {
+                                               val = obj->data.fs->free
+                                                               * 100 /
+                                                       obj->data.fs->size;
+                                       }
+
+                                       percent_print(p, p_max_size, 100 - val);
+                               }
+                       }
+                       OBJ(loadavg) {
+                               float *v = info.loadavg;
+
+                               if (obj->data.loadavg[2]) {
+                                       snprintf(p, p_max_size, "%.2f %.2f %.2f",
+                                               v[obj->data.loadavg[0] - 1],
+                                               v[obj->data.loadavg[1] - 1],
+                                               v[obj->data.loadavg[2] - 1]);
+                               } else if (obj->data.loadavg[1]) {
+                                       snprintf(p, p_max_size, "%.2f %.2f",
+                                               v[obj->data.loadavg[0] - 1],
+                                               v[obj->data.loadavg[1] - 1]);
+                               } else if (obj->data.loadavg[0]) {
+                                       snprintf(p, p_max_size, "%.2f",
+                                               v[obj->data.loadavg[0] - 1]);
+                               }
+                       }
+                       OBJ(goto) {
+                               new_goto(p, obj->data.i);
+                       }
+                       OBJ(tab) {
+                               new_tab(p, obj->data.pair.a, obj->data.pair.b);
+                       }
+#ifdef X11
+                       OBJ(hr) {
+                               new_hr(p, obj->data.i);
+                       }
+#endif
+                       OBJ(nameserver) {
+                               if (cur->nameserver_info.nscount > obj->data.i)
+                                       snprintf(p, p_max_size, "%s",
+                                                       cur->nameserver_info.ns_list[obj->data.i]);
+                       }
+#ifdef EVE
+                       OBJ(eve) {
+                               char *skill = eve(obj->data.eve.userid, obj->data.eve.apikey, obj->data.eve.charid);
+                               snprintf(p, p_max_size, "%s", skill);
+                       }
+#endif
+#ifdef HAVE_CURL
+                       OBJ(curl) {
+                               if (obj->data.curl.uri != NULL) {
+                                       ccurl_process_info(p, p_max_size, obj->data.curl.uri, obj->data.curl.interval);
+                               } else {
+                                       NORM_ERR("error processing Curl data");
+                               }
+                       }
+#endif
+#ifdef RSS
+                       OBJ(rss) {
+                               if (obj->data.rss.uri != NULL) {
+                                       rss_process_info(p, p_max_size, obj->data.rss.uri, obj->data.rss.action, obj->data.rss.act_par, obj->data.rss.interval, obj->data.rss.nrspaces);
+                               } else {
+                                       NORM_ERR("error processing RSS data");
+                               }
+                       }
+#endif
+#ifdef WEATHER
+                       OBJ(weather) {
+                               if (obj->data.weather.uri != NULL) {
+                                       weather_process_info(p, p_max_size, obj->data.weather.uri, obj->data.weather.data_type, obj->data.weather.interval);
+                               } else {
+                                       NORM_ERR("error processing weather data, check that you have a valid XOAP key if using XOAP.");
+                               }
+                       }
+#endif
+#ifdef XOAP
+                       OBJ(weather_forecast) {
+                               if (obj->data.weather_forecast.uri != NULL) {
+                                       weather_forecast_process_info(p, p_max_size, obj->data.weather_forecast.uri, obj->data.weather_forecast.day, obj->data.weather_forecast.data_type, obj->data.weather_forecast.interval);
+                               } else {
+                                       NORM_ERR("error processing weather forecast data, check that you have a valid XOAP key if using XOAP.");
+                               }
+                       }
+#endif
+#ifdef HAVE_LUA
+                       OBJ(lua) {
+                               char *str = llua_getstring(obj->data.s);
+                               if (str) {
+                                       snprintf(p, p_max_size, "%s", str);
+                                       free(str);
+                               }
+                       }
+                       OBJ(lua_parse) {
+                               char *str = llua_getstring(obj->data.s);
+                               if (str) {
+                                       evaluate(str, p);
+                                       free(str);
+                               }
+                       }
+                       OBJ(lua_bar) {
+                               double per;
+                               if (llua_getnumber(obj->data.s, &per)) {
+#ifdef X11
+                                       if(output_methods & TO_X) {
+                                               new_bar(p, obj->a, obj->b, (per/100.0 * 255));
+                                       } else {
+#endif /* X11 */
+                                               if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
+                                               new_bar_in_shell(p, p_max_size, per, obj->a);
+#ifdef X11
+                                       }
+#endif /* X11 */
+                               }
+                       }
+#ifdef X11
+                       OBJ(lua_graph) {
+                               double per;
+                               if (llua_getnumber(obj->data.s, &per)) {
+                                       new_graph(p, obj->a, obj->b, obj->c, obj->d,
+                                                       per, obj->e, 1, obj->char_a, obj->char_b);
+                               }
+                       }
+                       OBJ(lua_gauge) {
+                               double per;
+                               if (llua_getnumber(obj->data.s, &per)) {
+                                       new_gauge(p, obj->a, obj->b, (per/100.0 * 255));
+                               }
+                       }
+#endif /* X11 */
+#endif /* HAVE_LUA */
+#ifdef HDDTEMP
+                       OBJ(hddtemp) {
+                               char *endptr, unit;
+                               long val;
+                               if (obj->data.hddtemp.update_time < current_update_time - 30) {
+                                       if (obj->data.hddtemp.temp)
+                                               free(obj->data.hddtemp.temp);
+                                       obj->data.hddtemp.temp = get_hddtemp_info(obj->data.hddtemp.dev,
+                                                       obj->data.hddtemp.addr, obj->data.hddtemp.port);
+                                       obj->data.hddtemp.update_time = current_update_time;
+                               }
+                               if (!obj->data.hddtemp.temp) {
+                                       snprintf(p, p_max_size, "N/A");
+                               } else {
+                                       val = strtol(obj->data.hddtemp.temp + 1, &endptr, 10);
+                                       unit = obj->data.hddtemp.temp[0];
+
+                                       if (*endptr != '\0')
+                                               snprintf(p, p_max_size, "N/A");
+                                       else if (unit == 'C')
+                                               temp_print(p, p_max_size, (double)val, TEMP_CELSIUS);
+                                       else if (unit == 'F')
+                                               temp_print(p, p_max_size, (double)val, TEMP_FAHRENHEIT);
+                                       else
+                                               snprintf(p, p_max_size, "N/A");
+                               }
+                       }
+#endif
+                       OBJ(offset) {
+                               new_offset(p, obj->data.i);
+                       }
+                       OBJ(voffset) {
+                               new_voffset(p, obj->data.i);
+                       }
+#ifdef __linux__
+                       OBJ(i2c) {
+                               double r;
+
+                               r = get_sysfs_info(&obj->data.sysfs.fd, obj->data.sysfs.arg,
+                                       obj->data.sysfs.devtype, obj->data.sysfs.type);
+
+                               r = r * obj->data.sysfs.factor + obj->data.sysfs.offset;
+
+                               if (!strncmp(obj->data.sysfs.type, "temp", 4)) {
+                                       temp_print(p, p_max_size, r, TEMP_CELSIUS);
+                               } else if (r >= 100.0 || r == 0) {
+                                       snprintf(p, p_max_size, "%d", (int) r);
+                               } else {
+                                       snprintf(p, p_max_size, "%.1f", r);
+                               }
+                       }
+                       OBJ(platform) {
+                               double r;
+
+                               r = get_sysfs_info(&obj->data.sysfs.fd, obj->data.sysfs.arg,
+                                       obj->data.sysfs.devtype, obj->data.sysfs.type);
+
+                               r = r * obj->data.sysfs.factor + obj->data.sysfs.offset;
+
+                               if (!strncmp(obj->data.sysfs.type, "temp", 4)) {
+                                       temp_print(p, p_max_size, r, TEMP_CELSIUS);
+                               } else if (r >= 100.0 || r == 0) {
+                                       snprintf(p, p_max_size, "%d", (int) r);
+                               } else {
+                                       snprintf(p, p_max_size, "%.1f", r);
+                               }
+                       }
+                       OBJ(hwmon) {
+                               double r;
+
+                               r = get_sysfs_info(&obj->data.sysfs.fd, obj->data.sysfs.arg,
+                                       obj->data.sysfs.devtype, obj->data.sysfs.type);
+
+                               r = r * obj->data.sysfs.factor + obj->data.sysfs.offset;
+
+                               if (!strncmp(obj->data.sysfs.type, "temp", 4)) {
+                                       temp_print(p, p_max_size, r, TEMP_CELSIUS);
+                               } else if (r >= 100.0 || r == 0) {
+                                       snprintf(p, p_max_size, "%d", (int) r);
+                               } else {
+                                       snprintf(p, p_max_size, "%.1f", r);
+                               }
+                       }
+#endif /* __linux__ */
+                       OBJ(alignr) {
+                               new_alignr(p, obj->data.i);
+                       }
+                       OBJ(alignc) {
+                               new_alignc(p, obj->data.i);
+                       }
+                       OBJ(if_empty) {
+                               char buf[max_user_text];
+                               struct information *tmp_info =
+                                       malloc(sizeof(struct information));
+                               memcpy(tmp_info, cur, sizeof(struct information));
+                               generate_text_internal(buf, max_user_text,
+                                                      *obj->sub, tmp_info);
+
+                               if (strlen(buf) != 0) {
+                                       DO_JUMP;
+                               }
+                               free(tmp_info);
+                       }
+                       OBJ(if_match) {
+                               char expression[max_user_text];
+                               int val;
+                               struct information *tmp_info;
+
+                               tmp_info = malloc(sizeof(struct information));
+                               memcpy(tmp_info, cur, sizeof(struct information));
+                               generate_text_internal(expression, max_user_text,
+                                                      *obj->sub, tmp_info);
+                               DBGP("parsed arg into '%s'", expression);
+
+                               val = compare(expression);
+                               if (val == -2) {
+                                       NORM_ERR("compare failed for expression '%s'",
+                                                       expression);
+                               } else if (!val) {
+                                       DO_JUMP;
+                               }
+                               free(tmp_info);
+                       }
+                       OBJ(if_existing) {
+                               if (obj->data.ifblock.str
+                                   && !check_contains(obj->data.ifblock.s,
+                                                      obj->data.ifblock.str)) {
+                                       DO_JUMP;
+                               } else if (obj->data.ifblock.s
+                                          && access(obj->data.ifblock.s, F_OK)) {
+                                       DO_JUMP;
+                               }
+                       }
+                       OBJ(if_mounted) {
+                               if ((obj->data.ifblock.s)
+                                               && (!check_mount(obj->data.ifblock.s))) {
+                                       DO_JUMP;
+                               }
+                       }
+                       OBJ(if_running) {
+#ifdef __linux__
+                               if (!get_process_by_name(obj->data.ifblock.s)) {
+#else
+                               if ((obj->data.ifblock.s) && system(obj->data.ifblock.s)) {
+#endif
+                                       DO_JUMP;
+                               }
+                       }
+#if defined(__linux__)
+                       OBJ(ioscheduler) {
+                               snprintf(p, p_max_size, "%s", get_ioscheduler(obj->data.s));
+                       }
+#endif
+                       OBJ(kernel) {
+                               snprintf(p, p_max_size, "%s", cur->uname_s.release);
+                       }
+                       OBJ(machine) {
+                               snprintf(p, p_max_size, "%s", cur->uname_s.machine);
+                       }
+
+                       /* memory stuff */
+                       OBJ(mem) {
+                               human_readable(cur->mem * 1024, p, 255);
+                       }
+                       OBJ(memeasyfree) {
+                               human_readable(cur->memeasyfree * 1024, p, 255);
+                       }
+                       OBJ(memfree) {
+                               human_readable(cur->memfree * 1024, p, 255);
+                       }
+                       OBJ(memmax) {
+                               human_readable(cur->memmax * 1024, p, 255);
+                       }
+                       OBJ(memperc) {
+                               if (cur->memmax)
+                                       percent_print(p, p_max_size, cur->mem * 100 / cur->memmax);
+                       }
+#ifdef X11
+                       OBJ(memgauge){
+                               new_gauge(p, obj->data.pair.a, obj->data.pair.b,
+                                       cur->memmax ? (cur->mem * 255) / (cur->memmax) : 0);
+                       }
+#endif /* X11 */
+                       OBJ(membar) {
+#ifdef X11
+                               if(output_methods & TO_X) {
+                                       new_bar(p, obj->data.pair.a, obj->data.pair.b,
+                                               cur->memmax ? (cur->mem * 255) / (cur->memmax) : 0);
+                               }else{
+#endif /* X11 */
+                                       if(!obj->data.pair.a) obj->data.pair.a = DEFAULT_BAR_WIDTH_NO_X;
+                                       new_bar_in_shell(p, p_max_size, cur->memmax ? (cur->mem * 100) / (cur->memmax) : 0, obj->data.pair.a);
+#ifdef X11
+                               }
+#endif /* X11 */
+                       }
+#ifdef X11
+                       OBJ(memgraph) {
+                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
+                                       cur->memmax ? (cur->mem * 100.0) / (cur->memmax) : 0.0,
+                                       100, 1, obj->char_a, obj->char_b);
+                       }
+#endif /* X11 */
+                       /* mixer stuff */
+                       OBJ(mixer) {
+                               percent_print(p, p_max_size, mixer_get_avg(obj->data.l));
+                       }
+                       OBJ(mixerl) {
+                               percent_print(p, p_max_size, mixer_get_left(obj->data.l));
+                       }
+                       OBJ(mixerr) {
+                               percent_print(p, p_max_size, mixer_get_right(obj->data.l));
+                       }
+#ifdef X11
+                       OBJ(mixerbar) {
+                               new_bar(p, obj->data.mixerbar.w, obj->data.mixerbar.h,
+                                       mixer_to_255(obj->data.mixerbar.l,mixer_get_avg(obj->data.mixerbar.l)));
+                       }
+                       OBJ(mixerlbar) {
+                               new_bar(p, obj->data.mixerbar.w, obj->data.mixerbar.h,
+                                       mixer_to_255(obj->data.mixerbar.l,mixer_get_left(obj->data.mixerbar.l)));
+                       }
+                       OBJ(mixerrbar) {
+                               new_bar(p, obj->data.mixerbar.w, obj->data.mixerbar.h,
+                                       mixer_to_255(obj->data.mixerbar.l,mixer_get_right(obj->data.mixerbar.l)));
+                       }
+#endif /* X11 */
+                       OBJ(if_mixer_mute) {
+                               if (!mixer_is_mute(obj->data.ifblock.i)) {
+                                       DO_JUMP;
+                               }
+                       }
+#ifdef X11
+#define NOT_IN_X "Not running in X"
+                       OBJ(monitor) {
+                               if(x_initialised != YES) {
+                                       strncpy(p, NOT_IN_X, p_max_size);
+                               }else{
+                                       snprintf(p, p_max_size, "%d", cur->x11.monitor.current);
+                               }
+                       }
+                       OBJ(monitor_number) {
+                               if(x_initialised != YES) {
+                                       strncpy(p, NOT_IN_X, p_max_size);
+                               }else{
+                                       snprintf(p, p_max_size, "%d", cur->x11.monitor.number);
+                               }
+                       }
+                       OBJ(desktop) {
+                               if(x_initialised != YES) {
+                                       strncpy(p, NOT_IN_X, p_max_size);
+                               }else{
+                                       snprintf(p, p_max_size, "%d", cur->x11.desktop.current);
+                               }
+                       }
+                       OBJ(desktop_number) {
+                               if(x_initialised != YES) {
+                                       strncpy(p, NOT_IN_X, p_max_size);
+                               }else{
+                                       snprintf(p, p_max_size, "%d", cur->x11.desktop.number);
+                               }
+                       }
+                       OBJ(desktop_name) {
+                               if(x_initialised != YES) {
+                                       strncpy(p, NOT_IN_X, p_max_size);
+                               }else if(cur->x11.desktop.name != NULL) {
+                                       strncpy(p, cur->x11.desktop.name, p_max_size);
+                               }
+                       }
+#endif /* X11 */
+
+                       /* mail stuff */
+                       OBJ(mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d", obj->data.local_mail.mail_count);
+                       }
+                       OBJ(new_mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d",
+                                       obj->data.local_mail.new_mail_count);
+                       }
+                       OBJ(seen_mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d",
+                                       obj->data.local_mail.seen_mail_count);
+                       }
+                       OBJ(unseen_mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d",
+                                       obj->data.local_mail.unseen_mail_count);
+                       }
+                       OBJ(flagged_mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d",
+                                       obj->data.local_mail.flagged_mail_count);
+                       }
+                       OBJ(unflagged_mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d",
+                                       obj->data.local_mail.unflagged_mail_count);
+                       }
+                       OBJ(forwarded_mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d",
+                                       obj->data.local_mail.forwarded_mail_count);
+                       }
+                       OBJ(unforwarded_mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d",
+                                       obj->data.local_mail.unforwarded_mail_count);
+                       }
+                       OBJ(replied_mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d",
+                                       obj->data.local_mail.replied_mail_count);
+                       }
+                       OBJ(unreplied_mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d",
+                                       obj->data.local_mail.unreplied_mail_count);
+                       }
+                       OBJ(draft_mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d",
+                                       obj->data.local_mail.draft_mail_count);
+                       }
+                       OBJ(trashed_mails) {
+                               update_mail_count(&obj->data.local_mail);
+                               snprintf(p, p_max_size, "%d",
+                                       obj->data.local_mail.trashed_mail_count);
+                       }
+                       OBJ(mboxscan) {
+                               mbox_scan(obj->data.mboxscan.args, obj->data.mboxscan.output,
+                                       text_buffer_size);
+                               snprintf(p, p_max_size, "%s", obj->data.mboxscan.output);
+                       }
+                       OBJ(nodename) {
+                               snprintf(p, p_max_size, "%s", cur->uname_s.nodename);
+                       }
+                       OBJ(outlinecolor) {
+                               new_outline(p, obj->data.l);
+                       }
+                       OBJ(processes) {
+                               spaced_print(p, p_max_size, "%hu", 4, cur->procs);
+                       }
+                       OBJ(running_processes) {
+                               spaced_print(p, p_max_size, "%hu", 4, cur->run_procs);
+                       }
+                       OBJ(text) {
+                               snprintf(p, p_max_size, "%s", obj->data.s);
+                       }
+#ifdef X11
+                       OBJ(shadecolor) {
+                               new_bg(p, obj->data.l);
+                       }
+                       OBJ(stippled_hr) {
+                               new_stippled_hr(p, obj->data.pair.a, obj->data.pair.b);
+                       }
+#endif /* X11 */
+                       OBJ(swap) {
+                               human_readable(cur->swap * 1024, p, 255);
+                       }
+                       OBJ(swapfree) {
+                               human_readable(cur->swapfree * 1024, p, 255);
+                       }
+                       OBJ(swapmax) {
+                               human_readable(cur->swapmax * 1024, p, 255);
+                       }
+                       OBJ(swapperc) {
+                               if (cur->swapmax == 0) {
+                                       strncpy(p, "No swap", p_max_size);
+                               } else {
+                                       percent_print(p, p_max_size, cur->swap * 100 / cur->swapmax);
+                               }
+                       }
+                       OBJ(swapbar) {
+#ifdef X11
+                               if(output_methods & TO_X) {
+                                       new_bar(p, obj->data.pair.a, obj->data.pair.b,
+                                               cur->swapmax ? (cur->swap * 255) / (cur->swapmax) : 0);
+                               }else{
+#endif /* X11 */
+                                       if(!obj->data.pair.a) obj->data.pair.a = DEFAULT_BAR_WIDTH_NO_X;
+                                       new_bar_in_shell(p, p_max_size, cur->swapmax ? (cur->swap * 100) / (cur->swapmax) : 0, obj->data.pair.a);
+#ifdef X11
+                               }
+#endif /* X11 */
+                       }
+                       OBJ(sysname) {
+                               snprintf(p, p_max_size, "%s", cur->uname_s.sysname);
+                       }
+                       OBJ(time) {
+                               time_t t = time(NULL);
+                               struct tm *tm = localtime(&t);
+
+                               setlocale(LC_TIME, "");
+                               strftime(p, p_max_size, obj->data.s, tm);
+                       }
+                       OBJ(utime) {
+                               time_t t = time(NULL);
+                               struct tm *tm = gmtime(&t);
+
+                               strftime(p, p_max_size, obj->data.s, tm);
+                       }
+                       OBJ(tztime) {
+                               char *oldTZ = NULL;
+                               time_t t;
+                               struct tm *tm;
+
+                               if (obj->data.tztime.tz) {
+                                       oldTZ = getenv("TZ");
+                                       setenv("TZ", obj->data.tztime.tz, 1);
+                                       tzset();
+                               }
+                               t = time(NULL);
+                               tm = localtime(&t);
+
+                               setlocale(LC_TIME, "");
+                               strftime(p, p_max_size, obj->data.tztime.fmt, tm);
+                               if (oldTZ) {
+                                       setenv("TZ", oldTZ, 1);
+                                       tzset();
+                               } else {
+                                       unsetenv("TZ");
+                               }
+                               // Needless to free oldTZ since getenv gives ptr to static data
+                       }
+                       OBJ(totaldown) {
+                               human_readable(obj->data.net->recv, p, 255);
+                       }
+                       OBJ(totalup) {
+                               human_readable(obj->data.net->trans, p, 255);
+                       }
+                       OBJ(updates) {
+                               snprintf(p, p_max_size, "%d", total_updates);
+                       }
+                       OBJ(if_updatenr) {
+                               if(total_updates % updatereset != obj->data.ifblock.i - 1) {
+                                       DO_JUMP;
+                               }
+                       }
+                       OBJ(upspeed) {
+                               human_readable(obj->data.net->trans_speed, p, 255);
+                       }
+                       OBJ(upspeedf) {
+                               spaced_print(p, p_max_size, "%.1f", 8,
+                                       obj->data.net->trans_speed / 1024.0);
+                       }
+#ifdef X11
+                       OBJ(upspeedgraph) {
+                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
+                                       obj->data.net->trans_speed / 1024.0, obj->e, 1, obj->char_a, obj->char_b);
+                       }
+#endif /* X11 */
+                       OBJ(uptime_short) {
+                               format_seconds_short(p, p_max_size, (int) cur->uptime);
+                       }
+                       OBJ(uptime) {
+                               format_seconds(p, p_max_size, (int) cur->uptime);
+                       }
+                       OBJ(user_names) {
+                               snprintf(p, p_max_size, "%s", cur->users.names);
+                       }
+                       OBJ(user_terms) {
+                               snprintf(p, p_max_size, "%s", cur->users.terms);
+                       }
+                       OBJ(user_times) {
+                               snprintf(p, p_max_size, "%s", cur->users.times);
+                       }
+                       OBJ(user_number) {
+                               snprintf(p, p_max_size, "%d", cur->users.number);
+                       }
+#if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) \
+               || defined(__OpenBSD__)) && (defined(i386) || defined(__i386__))
+                       OBJ(apm_adapter) {
+                               char *msg;
+
+                               msg = get_apm_adapter();
+                               snprintf(p, p_max_size, "%s", msg);
+                               free(msg);
+                       }
+                       OBJ(apm_battery_life) {
+                               char *msg;
+
+                               msg = get_apm_battery_life();
+                               snprintf(p, p_max_size, "%s", msg);
+                               free(msg);
+                       }
+                       OBJ(apm_battery_time) {
+                               char *msg;
+
+                               msg = get_apm_battery_time();
+                               snprintf(p, p_max_size, "%s", msg);
+                               free(msg);
+                       }
+#endif /* __FreeBSD__ __OpenBSD__ */
+
+#ifdef MPD
+#define mpd_printf(fmt, val) \
+       snprintf(p, p_max_size, fmt, mpd_get_info()->val)
+#define mpd_sprintf(val) { \
+       if (!obj->data.i || obj->data.i > p_max_size) \
+               mpd_printf("%s", val); \
+       else \
+               snprintf(p, obj->data.i, "%s", mpd_get_info()->val); \
+}
+                       OBJ(mpd_title)
+                               mpd_sprintf(title);
+                       OBJ(mpd_artist)
+                               mpd_sprintf(artist);
+                       OBJ(mpd_album)
+                               mpd_sprintf(album);
+                       OBJ(mpd_random)
+                               mpd_printf("%s", random);
+                       OBJ(mpd_repeat)
+                               mpd_printf("%s", repeat);
+                       OBJ(mpd_track)
+                               mpd_sprintf(track);
+                       OBJ(mpd_name)
+                               mpd_sprintf(name);
+                       OBJ(mpd_file)
+                               mpd_sprintf(file);
+                       OBJ(mpd_vol)
+                               mpd_printf("%d", volume);
+                       OBJ(mpd_bitrate)
+                               mpd_printf("%d", bitrate);
+                       OBJ(mpd_status)
+                               mpd_printf("%s", status);
+                       OBJ(mpd_elapsed) {
+                               format_media_player_time(p, p_max_size, mpd_get_info()->elapsed);
+                       }
+                       OBJ(mpd_length) {
+                               format_media_player_time(p, p_max_size, mpd_get_info()->length);
+                       }
+                       OBJ(mpd_percent) {
+                               percent_print(p, p_max_size, (int)(mpd_get_info()->progress * 100));
+                       }
+                       OBJ(mpd_bar) {
+#ifdef X11
+                               if(output_methods & TO_X) {
+                                       new_bar(p, obj->data.pair.a, obj->data.pair.b,
+                                               (int) (mpd_get_info()->progress * 255.0f));
+                               } else {
+#endif /* X11 */
+                                       if(!obj->data.pair.a) obj->data.pair.a = DEFAULT_BAR_WIDTH_NO_X;
+                                       new_bar_in_shell(p, p_max_size, (int) (mpd_get_info()->progress * 100.0f), obj->data.pair.a);
+#ifdef X11
+                               }
+#endif /* X11 */
+                       }
+                       OBJ(mpd_smart) {
+                               struct mpd_s *mpd = mpd_get_info();
+                               int len = obj->data.i;
+                               if (len == 0 || len > p_max_size)
+                                       len = p_max_size;
+
+                               memset(p, 0, p_max_size);
+                               if (mpd->artist && *mpd->artist &&
+                                   mpd->title && *mpd->title) {
+                                       snprintf(p, len, "%s - %s", mpd->artist,
+                                               mpd->title);
+                               } else if (mpd->title && *mpd->title) {
+                                       snprintf(p, len, "%s", mpd->title);
+                               } else if (mpd->artist && *mpd->artist) {
+                                       snprintf(p, len, "%s", mpd->artist);
+                               } else if (mpd->file && *mpd->file) {
+                                       snprintf(p, len, "%s", mpd->file);
+                               } else {
+                                       *p = 0;
+                               }
+                       }
+                       OBJ(if_mpd_playing) {
+                               if (!mpd_get_info()->is_playing) {
+                                       DO_JUMP;
+                               }
+                       }
+#undef mpd_sprintf
+#undef mpd_printf
+#endif
+
+#ifdef MOC
+#define MOC_PRINT(t, a) \
+       snprintf(p, p_max_size, "%s", (moc.t ? moc.t : a))
+                       OBJ(moc_state) {
+                               MOC_PRINT(state, "??");
+                       }
+                       OBJ(moc_file) {
+                               MOC_PRINT(file, "no file");
+                       }
+                       OBJ(moc_title) {
+                               MOC_PRINT(title, "no title");
+                       }
+                       OBJ(moc_artist) {
+                               MOC_PRINT(artist, "no artist");
+                       }
+                       OBJ(moc_song) {
+                               MOC_PRINT(song, "no song");
+                       }
+                       OBJ(moc_album) {
+                               MOC_PRINT(album, "no album");
+                       }
+                       OBJ(moc_totaltime) {
+                               MOC_PRINT(totaltime, "0:00");
+                       }
+                       OBJ(moc_timeleft) {
+                               MOC_PRINT(timeleft, "0:00");
+                       }
+                       OBJ(moc_curtime) {
+                               MOC_PRINT(curtime, "0:00");
+                       }
+                       OBJ(moc_bitrate) {
+                               MOC_PRINT(bitrate, "0Kbps");
+                       }
+                       OBJ(moc_rate) {
+                               MOC_PRINT(rate, "0KHz");
+                       }
+#undef MOC_PRINT
+#endif /* MOC */
+#ifdef XMMS2
+                       OBJ(xmms2_artist) {
+                               snprintf(p, p_max_size, "%s", cur->xmms2.artist);
+                       }
+                       OBJ(xmms2_album) {
+                               snprintf(p, p_max_size, "%s", cur->xmms2.album);
+                       }
+                       OBJ(xmms2_title) {
+                               snprintf(p, p_max_size, "%s", cur->xmms2.title);
+                       }
+                       OBJ(xmms2_genre) {
+                               snprintf(p, p_max_size, "%s", cur->xmms2.genre);
+                       }
+                       OBJ(xmms2_comment) {
+                               snprintf(p, p_max_size, "%s", cur->xmms2.comment);
+                       }
+                       OBJ(xmms2_url) {
+                               snprintf(p, p_max_size, "%s", cur->xmms2.url);
+                       }
+                       OBJ(xmms2_status) {
+                               snprintf(p, p_max_size, "%s", cur->xmms2.status);
+                       }
+                       OBJ(xmms2_date) {
+                               snprintf(p, p_max_size, "%s", cur->xmms2.date);
+                       }
+                       OBJ(xmms2_tracknr) {
+                               if (cur->xmms2.tracknr != -1) {
+                                       snprintf(p, p_max_size, "%i", cur->xmms2.tracknr);
+                               }
+                       }
+                       OBJ(xmms2_bitrate) {
+                               snprintf(p, p_max_size, "%i", cur->xmms2.bitrate);
+                       }
+                       OBJ(xmms2_id) {
+                               snprintf(p, p_max_size, "%u", cur->xmms2.id);
+                       }
+                       OBJ(xmms2_size) {
+                               snprintf(p, p_max_size, "%2.1f", cur->xmms2.size);
+                       }
+                       OBJ(xmms2_elapsed) {
+                               snprintf(p, p_max_size, "%02d:%02d", cur->xmms2.elapsed / 60000,
+                                       (cur->xmms2.elapsed / 1000) % 60);
+                       }
+                       OBJ(xmms2_duration) {
+                               snprintf(p, p_max_size, "%02d:%02d",
+                                       cur->xmms2.duration / 60000,
+                                       (cur->xmms2.duration / 1000) % 60);
+                       }
+                       OBJ(xmms2_percent) {
+                               snprintf(p, p_max_size, "%2.0f", cur->xmms2.progress * 100);
+                       }
+#ifdef X11
+                       OBJ(xmms2_bar) {
+                               new_bar(p, obj->data.pair.a, obj->data.pair.b,
+                                       (int) (cur->xmms2.progress * 255.0f));
+                       }
+#endif /* X11 */
+                       OBJ(xmms2_playlist) {
+                               snprintf(p, p_max_size, "%s", cur->xmms2.playlist);
+                       }
+                       OBJ(xmms2_timesplayed) {
+                               snprintf(p, p_max_size, "%i", cur->xmms2.timesplayed);
+                       }
+                       OBJ(xmms2_smart) {
+                               if (strlen(cur->xmms2.title) < 2
+                                               && strlen(cur->xmms2.title) < 2) {
+                                       snprintf(p, p_max_size, "%s", cur->xmms2.url);
+                               } else {
+                                       snprintf(p, p_max_size, "%s - %s", cur->xmms2.artist,
+                                               cur->xmms2.title);
+                               }
+                       }
+                       OBJ(if_xmms2_connected) {
+                               if (cur->xmms2.conn_state != 1) {
+                                       DO_JUMP;
+                               }
+                       }
+#endif /* XMMS */
+#ifdef AUDACIOUS
+                       OBJ(audacious_status) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_STATUS]);
+                       }
+                       OBJ(audacious_title) {
+                               snprintf(p, cur->audacious.max_title_len > 0
+                                       ? cur->audacious.max_title_len : p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_TITLE]);
+                       }
+                       OBJ(audacious_length) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_LENGTH]);
+                       }
+                       OBJ(audacious_length_seconds) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_LENGTH_SECONDS]);
+                       }
+                       OBJ(audacious_position) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_POSITION]);
+                       }
+                       OBJ(audacious_position_seconds) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_POSITION_SECONDS]);
+                       }
+                       OBJ(audacious_bitrate) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_BITRATE]);
+                       }
+                       OBJ(audacious_frequency) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_FREQUENCY]);
+                       }
+                       OBJ(audacious_channels) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_CHANNELS]);
+                       }
+                       OBJ(audacious_filename) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_FILENAME]);
+                       }
+                       OBJ(audacious_playlist_length) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_PLAYLIST_LENGTH]);
+                       }
+                       OBJ(audacious_playlist_position) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_PLAYLIST_POSITION]);
+                       }
+                       OBJ(audacious_main_volume) {
+                               snprintf(p, p_max_size, "%s",
+                                       cur->audacious.items[AUDACIOUS_MAIN_VOLUME]);
+                       }
+#ifdef X11
+                       OBJ(audacious_bar) {
+                               double progress;
+
+                               progress =
+                                       atof(cur->audacious.items[AUDACIOUS_POSITION_SECONDS]) /
+                                       atof(cur->audacious.items[AUDACIOUS_LENGTH_SECONDS]);
+                               new_bar(p, obj->a, obj->b, (int) (progress * 255.0f));
+                       }
+#endif /* X11 */
+#endif /* AUDACIOUS */
+
+#ifdef BMPX
+                       OBJ(bmpx_title) {
+                               snprintf(p, p_max_size, "%s", cur->bmpx.title);
+                       }
+                       OBJ(bmpx_artist) {
+                               snprintf(p, p_max_size, "%s", cur->bmpx.artist);
+                       }
+                       OBJ(bmpx_album) {
+                               snprintf(p, p_max_size, "%s", cur->bmpx.album);
+                       }
+                       OBJ(bmpx_uri) {
+                               snprintf(p, p_max_size, "%s", cur->bmpx.uri);
+                       }
+                       OBJ(bmpx_track) {
+                               snprintf(p, p_max_size, "%i", cur->bmpx.track);
+                       }
+                       OBJ(bmpx_bitrate) {
+                               snprintf(p, p_max_size, "%i", cur->bmpx.bitrate);
+                       }
+#endif /* BMPX */
+                       /* we have four different types of top (top, top_mem,
+                        * top_time and top_io). To avoid having almost-same code four
+                        * times, we have this special handler. */
+                       break;
+                       case OBJ_top:
+                               parse_top_args("top", obj->data.top.s, obj);
+                               if (!needed) needed = cur->cpu;
+                       case OBJ_top_mem:
+                               parse_top_args("top_mem", obj->data.top.s, obj);
+                               if (!needed) needed = cur->memu;
+                       case OBJ_top_time:
+                               parse_top_args("top_time", obj->data.top.s, obj);
+                               if (!needed) needed = cur->time;
+#ifdef IOSTATS
+                       case OBJ_top_io:
+                               parse_top_args("top_io", obj->data.top.s, obj);
+                               if (!needed) needed = cur->io;
+#endif
+
+                               if (needed[obj->data.top.num]) {
+                                       char *timeval;
+
+                                       switch (obj->data.top.type) {
+                                               case TOP_NAME:
+                                                       snprintf(p, top_name_width + 1, "%-*s", top_name_width,
+                                                                       needed[obj->data.top.num]->name);
+                                                       break;
+                                               case TOP_CPU:
+                                                       snprintf(p, 7, "%6.2f",
+                                                                       needed[obj->data.top.num]->amount);
+                                                       break;
+                                               case TOP_PID:
+                                                       snprintf(p, 6, "%5i",
+                                                                       needed[obj->data.top.num]->pid);
+                                                       break;
+                                               case TOP_MEM:
+                                                       snprintf(p, 7, "%6.2f",
+                                                                       needed[obj->data.top.num]->totalmem);
+                                                       break;
+                                               case TOP_TIME:
+                                                       timeval = format_time(
+                                                                       needed[obj->data.top.num]->total_cpu_time, 9);
+                                                       snprintf(p, 10, "%9s", timeval);
+                                                       free(timeval);
+                                                       break;
+                                               case TOP_MEM_RES:
+                                                       human_readable(needed[obj->data.top.num]->rss,
+                                                                       p, 255);
+                                                       break;
+                                               case TOP_MEM_VSIZE:
+                                                       human_readable(needed[obj->data.top.num]->vsize,
+                                                                       p, 255);
+                                                       break;
+#ifdef IOSTATS
+                                               case TOP_READ_BYTES:
+                                                       human_readable(needed[obj->data.top.num]->read_bytes / update_interval,
+                                                                       p, 255);
+                                                       break;
+                                               case TOP_WRITE_BYTES:
+                                                       human_readable(needed[obj->data.top.num]->write_bytes / update_interval,
+                                                                       p, 255);
+                                                       break;
+                                               case TOP_IO_PERC:
+                                                       snprintf(p, 7, "%6.2f",
+                                                                       needed[obj->data.top.num]->io_perc);
+                                                       break;
+#endif
+                                       }
+                               }
+                       OBJ(tail) {
+                               print_tailhead("tail", obj, p, p_max_size);
+                       }
+                       OBJ(head) {
+                               print_tailhead("head", obj, p, p_max_size);
+                       }
+                       OBJ(lines) {
+                               FILE *fp = open_file(obj->data.s, &obj->a);
+
+                               if(fp != NULL) {
+/* FIXME: use something more general (see also tail.c, head.c */
+#define BUFSZ 0x1000
+                                       char buf[BUFSZ];
+                                       int j, lines;
+
+                                       lines = 0;
+                                       while(fgets(buf, BUFSZ, fp) != NULL){
+                                               for(j = 0; buf[j] != 0; j++) {
+                                                       if(buf[j] == '\n') {
+                                                               lines++;
+                                                       }
+                                               }
+                                       }
+                                       sprintf(p, "%d", lines);
+                                       fclose(fp);
+                               } else {
+                                       sprintf(p, "File Unreadable");
+                               }
+                       }
+
+                       OBJ(words) {
+                               FILE *fp = open_file(obj->data.s, &obj->a);
+
+                               if(fp != NULL) {
+                                       char buf[BUFSZ];
+                                       int j, words;
+                                       char inword = FALSE;
+
+                                       words = 0;
+                                       while(fgets(buf, BUFSZ, fp) != NULL){
+                                               for(j = 0; buf[j] != 0; j++) {
+                                                       if(!isspace(buf[j])) {
+                                                               if(inword == FALSE) {
+                                                                       words++;
+                                                                       inword = TRUE;
+                                                               }
+                                                       } else {
+                                                               inword = FALSE;
+                                                       }
+                                               }
+                                       }
+                                       sprintf(p, "%d", words);
+                                       fclose(fp);
+                               } else {
+                                       sprintf(p, "File Unreadable");
+                               }
+                       }
+#ifdef TCP_PORT_MONITOR
+                       OBJ(tcp_portmon) {
+                               tcp_portmon_action(p, p_max_size,
+                                                  &obj->data.tcp_port_monitor);
+                       }
+#endif /* TCP_PORT_MONITOR */
+
+#ifdef HAVE_ICONV
+                       OBJ(iconv_start) {
+                               set_iconv_converting(1);
+                               set_iconv_selected(obj->a);
+                       }
+                       OBJ(iconv_stop) {
+                               set_iconv_converting(0);
+                               set_iconv_selected(0);
+                       }
+#endif /* HAVE_ICONV */
+
+                       OBJ(entropy_avail) {
+                               snprintf(p, p_max_size, "%d", cur->entropy.entropy_avail);
+                       }
+                       OBJ(entropy_perc) {
+                               percent_print(p, p_max_size,
+                                             cur->entropy.entropy_avail *
+                                             100 / cur->entropy.poolsize);
+                       }
+                       OBJ(entropy_poolsize) {
+                               snprintf(p, p_max_size, "%d", cur->entropy.poolsize);
+                       }
+                       OBJ(entropy_bar) {
+                               double entropy_perc;
+
+                               entropy_perc = (double) cur->entropy.entropy_avail /
+                                       (double) cur->entropy.poolsize;
+#ifdef X11
+                               if(output_methods & TO_X) {
+                                       new_bar(p, obj->a, obj->b, (int) (entropy_perc * 255.0f));
+                               } else {
+#endif /* X11 */
+                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
+                                       new_bar_in_shell(p, p_max_size, (int) (entropy_perc * 100.0f), obj->a);
+#ifdef X11
+                               }
+#endif /* X11 */
+                       }
+#ifdef IBM
+                       OBJ(smapi) {
+                               char *s;
+                               if(obj->data.s) {
+                                       s = smapi_get_val(obj->data.s);
+                                       snprintf(p, p_max_size, "%s", s);
+                                       free(s);
+                               }
+                       }
+                       OBJ(if_smapi_bat_installed) {
+                               int idx;
+                               if(obj->data.ifblock.s && sscanf(obj->data.ifblock.s, "%i", &idx) == 1) {
+                                       if(!smapi_bat_installed(idx)) {
+                                               DO_JUMP;
+                                       }
+                               } else
+                                       NORM_ERR("argument to if_smapi_bat_installed must be an integer");
+                       }
+                       OBJ(smapi_bat_perc) {
+                               int idx, val;
+                               if(obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
+                                       val = smapi_bat_installed(idx) ?
+                                               smapi_get_bat_int(idx, "remaining_percent") : 0;
+                                       percent_print(p, p_max_size, val);
+                               } else
+                                       NORM_ERR("argument to smapi_bat_perc must be an integer");
+                       }
+                       OBJ(smapi_bat_temp) {
+                               int idx, val;
+                               if(obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
+                                       val = smapi_bat_installed(idx) ?
+                                               smapi_get_bat_int(idx, "temperature") : 0;
+                                       /* temperature is in milli degree celsius */
+                                       temp_print(p, p_max_size, val / 1000, TEMP_CELSIUS);
+                               } else
+                                       NORM_ERR("argument to smapi_bat_temp must be an integer");
+                       }
+                       OBJ(smapi_bat_power) {
+                               int idx, val;
+                               if(obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
+                                       val = smapi_bat_installed(idx) ?
+                                               smapi_get_bat_int(idx, "power_now") : 0;
+                                       /* power_now is in mW, set to W with one digit precision */
+                                       snprintf(p, p_max_size, "%.1f", ((double)val / 1000));
+                               } else
+                                       NORM_ERR("argument to smapi_bat_power must be an integer");
+                       }
+#ifdef X11
+                       OBJ(smapi_bat_bar) {
+                               if(obj->data.i >= 0 && smapi_bat_installed(obj->data.i))
+                                       new_bar(p, obj->a, obj->b, (int)
+                                                       (255 * smapi_get_bat_int(obj->data.i, "remaining_percent") / 100));
+                               else
+                                       new_bar(p, obj->a, obj->b, 0);
+                       }
+#endif /* X11 */
+#endif /* IBM */
+                       OBJ(include) {
+                               if(obj->sub) {
+                                       char buf[max_user_text];
+
+                                       generate_text_internal(buf, max_user_text, *obj->sub, cur);
+                                       snprintf(p, p_max_size, "%s", buf);
+                               } else {
+                                       p[0] = 0;
+                               }
+                       }
+                       OBJ(blink) {
+                               //blinking like this can look a bit ugly if the chars in the font don't have the same width
+                               char buf[max_user_text];
+                               unsigned int j;
+
+                               generate_text_internal(buf, max_user_text, *obj->sub, cur);
+                               snprintf(p, p_max_size, "%s", buf);
+                               if(total_updates % 2) {
+                                       for(j=0; p[j] != 0; j++) {
+                                               p[j] = ' ';
+                                       }
+                               }
+                       }
+                       OBJ(to_bytes) {
+                               char buf[max_user_text];
+                               long long bytes;
+                               char unit[16];  // 16 because we can also have long names (like mega-bytes)
+
+                               generate_text_internal(buf, max_user_text, *obj->sub, cur);
+                               if(sscanf(buf, "%lli%s", &bytes, unit) == 2 && strlen(unit) < 16){
+                                       if(strncasecmp("b", unit, 1) == 0) snprintf(buf, max_user_text, "%lli", bytes);
+                                       else if(strncasecmp("k", unit, 1) == 0) snprintf(buf, max_user_text, "%lli", bytes * 1024);
+                                       else if(strncasecmp("m", unit, 1) == 0) snprintf(buf, max_user_text, "%lli", bytes * 1024 * 1024);
+                                       else if(strncasecmp("g", unit, 1) == 0) snprintf(buf, max_user_text, "%lli", bytes * 1024 * 1024 * 1024);
+                                       else if(strncasecmp("t", unit, 1) == 0) snprintf(buf, max_user_text, "%lli", bytes * 1024 * 1024 * 1024 * 1024);
+                               }
+                               snprintf(p, p_max_size, "%s", buf);
+                       }
+                       OBJ(scroll) {
+                               unsigned int j, colorchanges = 0, frontcolorchanges = 0, visibcolorchanges = 0, strend;
+                               char *pwithcolors;
+                               char buf[max_user_text];
+                               generate_text_internal(buf, max_user_text,
+                                                      *obj->sub, cur);
+                               for(j = 0; buf[j] != 0; j++) {
+                                       switch(buf[j]) {
+                                       case '\n':      //place all the lines behind each other with LINESEPARATOR between them
+#define LINESEPARATOR '|'
+                                               buf[j]=LINESEPARATOR;
+                                               break;
+                                       case SPECIAL_CHAR:
+                                               colorchanges++;
+                                               break;
+                                       }
+                               }
+                               //no scrolling necessary if the length of the text to scroll is too short
+                               if (strlen(buf) - colorchanges <= obj->data.scroll.show) {
+                                       snprintf(p, p_max_size, "%s", buf);
+                                       break;
+                               }
+                               //make sure a colorchange at the front is not part of the string we are going to show
+                               while(*(buf + obj->data.scroll.start) == SPECIAL_CHAR) {
+                                       obj->data.scroll.start++;
+                               }
+                               //place all chars that should be visible in p, including colorchanges
+                               for(j=0; j < obj->data.scroll.show + visibcolorchanges; j++) {
+                                       p[j] = *(buf + obj->data.scroll.start + j);
+                                       if(p[j] == SPECIAL_CHAR) {
+                                               visibcolorchanges++;
+                                       }
+                                       //if there is still room fill it with spaces
+                                       if( ! p[j]) break;
+                               }
+                               for(; j < obj->data.scroll.show + visibcolorchanges; j++) {
+                                       p[j] = ' ';
+                               }
+                               p[j] = 0;
+                               //count colorchanges in front of the visible part and place that many colorchanges in front of the visible part
+                               for(j = 0; j < obj->data.scroll.start; j++) {
+                                       if(buf[j] == SPECIAL_CHAR) frontcolorchanges++;
+                               }
+                               pwithcolors=malloc(strlen(p) + 1 + colorchanges - visibcolorchanges);
+                               for(j = 0; j < frontcolorchanges; j++) {
+                                       pwithcolors[j] = SPECIAL_CHAR;
+                               }
+                               pwithcolors[j] = 0;
+                               strcat(pwithcolors,p);
+                               strend = strlen(pwithcolors);
+                               //and place the colorchanges not in front or in the visible part behind the visible part
+                               for(j = 0; j < colorchanges - frontcolorchanges - visibcolorchanges; j++) {
+                                       pwithcolors[strend + j] = SPECIAL_CHAR;
+                               }
+                               pwithcolors[strend + j] = 0;
+                               strcpy(p, pwithcolors);
+                               free(pwithcolors);
+                               //scroll
+                               obj->data.scroll.start += obj->data.scroll.step;
+                               if(buf[obj->data.scroll.start] == 0){
+                                        obj->data.scroll.start = 0;
+                               }
+#ifdef X11
+                               //reset color when scroll is finished
+                               new_fg(p + strlen(p), obj->data.scroll.resetcolor);
+#endif
+                       }
+                       OBJ(combine) {
+                               char buf[2][max_user_text];
+                               int i, j;
+                               long longest=0;
+                               int nextstart;
+                               int nr_rows[2];
+                               struct llrows {
+                                       char* row;
+                                       struct llrows* next;
+                               };
+                               struct llrows *ll_rows[2], *current[2];
+                               struct text_object * objsub = obj->sub;
+
+                               p[0]=0;
+                               for(i=0; i<2; i++) {
+                                       nr_rows[i] = 1;
+                                       nextstart = 0;
+                                       ll_rows[i] = malloc(sizeof(struct llrows));
+                                       current[i] = ll_rows[i];
+                                       for(j=0; j<i; j++) objsub = objsub->sub;
+                                       generate_text_internal(buf[i], max_user_text, *objsub, cur);
+                                       for(j=0; buf[i][j] != 0; j++) {
+                                               if(buf[i][j] == '\t') buf[i][j] = ' ';
+                                               if(buf[i][j] == '\n') {
+                                                       buf[i][j] = 0;
+                                                       current[i]->row = strdup(buf[i]+nextstart);
+                                                       if(i==0 && (long)strlen(current[i]->row) > longest) longest = (long)strlen(current[i]->row);
+                                                       current[i]->next = malloc(sizeof(struct llrows));
+                                                       current[i] = current[i]->next;
+                                                       nextstart = j + 1;
+                                                       nr_rows[i]++;
+                                               }
+                                       }
+                                       current[i]->row = strdup(buf[i]+nextstart);
+                                       if(i==0 && (long)strlen(current[i]->row) > longest) longest = (long)strlen(current[i]->row);
+                                       current[i]->next = NULL;
+                                       current[i] = ll_rows[i];
+                               }
+                               for(j=0; j < (nr_rows[0] > nr_rows[1] ? nr_rows[0] : nr_rows[1] ); j++) {
+                                       if(current[0]) {
+                                               strcat(p, current[0]->row);
+                                               i=strlen(current[0]->row);
+                                       }else i = 0;
+                                       while(i < longest) {
+                                               strcat(p, " ");
+                                               i++;
+                                       }
+                                       if(current[1]) {
+                                               strcat(p, obj->data.combine.seperation);
+                                               strcat(p, current[1]->row);
+                                       }
+                                       strcat(p, "\n");
+                                       #ifdef HAVE_OPENMP
+                                       #pragma omp parallel for schedule(dynamic,10)
+                                       #endif /* HAVE_OPENMP */
+                                       for(i=0; i<2; i++) if(current[i]) current[i]=current[i]->next;
+                               }
+                               #ifdef HAVE_OPENMP
+                               #pragma omp parallel for schedule(dynamic,10)
+                               #endif /* HAVE_OPENMP */
+                               for(i=0; i<2; i++) {
+                                       while(ll_rows[i] != NULL) {
+                                               current[i]=ll_rows[i];
+                                               free(current[i]->row);
+                                               ll_rows[i]=current[i]->next;
+                                               free(current[i]);
+                                       }
+                               }
+                       }
+#ifdef NVIDIA
+                       OBJ(nvidia) {
+                               int value = get_nvidia_value(obj->data.nvidia.type, display);
+                               if(value == -1)
+                                       snprintf(p, p_max_size, "N/A");
+                               else if (obj->data.nvidia.type == NV_TEMP)
+                                       temp_print(p, p_max_size, (double)value, TEMP_CELSIUS);
+                               else if (obj->data.nvidia.print_as_float &&
+                                               value > 0 && value < 100)
+                                       snprintf(p, p_max_size, "%.1f", (float)value);
+                               else
+                                       snprintf(p, p_max_size, "%d", value);
+                       }
+#endif /* NVIDIA */
+#ifdef APCUPSD
+                       OBJ(apcupsd) {
+                               /* This is just a meta-object to set host:port */
+                       }
+                       OBJ(apcupsd_name) {
+                               snprintf(p, p_max_size, "%s",
+                                                cur->apcupsd.items[APCUPSD_NAME]);
+                       }
+                       OBJ(apcupsd_model) {
+                               snprintf(p, p_max_size, "%s",
+                                                cur->apcupsd.items[APCUPSD_MODEL]);
+                       }
+                       OBJ(apcupsd_upsmode) {
+                               snprintf(p, p_max_size, "%s",
+                                                cur->apcupsd.items[APCUPSD_UPSMODE]);
+                       }
+                       OBJ(apcupsd_cable) {
+                               snprintf(p, p_max_size, "%s",
+                                                cur->apcupsd.items[APCUPSD_CABLE]);
+                       }
+                       OBJ(apcupsd_status) {
+                               snprintf(p, p_max_size, "%s",
+                                                cur->apcupsd.items[APCUPSD_STATUS]);
+                       }
+                       OBJ(apcupsd_linev) {
+                               snprintf(p, p_max_size, "%s",
+                                                cur->apcupsd.items[APCUPSD_LINEV]);
+                       }
+                       OBJ(apcupsd_load) {
+                               snprintf(p, p_max_size, "%s",
+                                                cur->apcupsd.items[APCUPSD_LOAD]);
+                       }
+                       OBJ(apcupsd_loadbar) {
+                               double progress;
+#ifdef X11
+                               if(output_methods & TO_X) {
+                                       progress = atof(cur->apcupsd.items[APCUPSD_LOAD]) / 100.0 * 255.0;
+                                       new_bar(p, obj->a, obj->b, (int) progress);
+                               } else {
+#endif /* X11 */
+                                       progress = atof(cur->apcupsd.items[APCUPSD_LOAD]);
+                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
+                                       new_bar_in_shell(p, p_max_size, (int) progress, obj->a);
+#ifdef X11
+                               }
+#endif /* X11 */
+                       }
+#ifdef X11
+                       OBJ(apcupsd_loadgraph) {
+                               double progress;
+                               progress =      atof(cur->apcupsd.items[APCUPSD_LOAD]);
+                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
+                                                 (int)progress, 100, 1, obj->char_a, obj->char_b);
+                       }
+                       OBJ(apcupsd_loadgauge) {
+                               double progress;
+                               progress =      atof(cur->apcupsd.items[APCUPSD_LOAD]) / 100.0 * 255.0;
+                               new_gauge(p, obj->a, obj->b,
+                                                 (int)progress);
+                       }
+#endif /* X11 */
+                       OBJ(apcupsd_charge) {
+                               snprintf(p, p_max_size, "%s",
+                                                cur->apcupsd.items[APCUPSD_CHARGE]);
+                       }
+                       OBJ(apcupsd_timeleft) {
+                               snprintf(p, p_max_size, "%s",
+                                                cur->apcupsd.items[APCUPSD_TIMELEFT]);
+                       }
+                       OBJ(apcupsd_temp) {
+                               snprintf(p, p_max_size, "%s",
+                                                cur->apcupsd.items[APCUPSD_TEMP]);
+                       }
+                       OBJ(apcupsd_lastxfer) {
+                               snprintf(p, p_max_size, "%s",
+                                                cur->apcupsd.items[APCUPSD_LASTXFER]);
+                       }
+#endif /* APCUPSD */
+                       break;
+               }
+#undef DO_JUMP
+
+
+               {
+                       size_t a = strlen(p);
+
+#ifdef HAVE_ICONV
+                       iconv_convert(a, buff_in, p, p_max_size);
+#endif /* HAVE_ICONV */
+                       if (obj->type != OBJ_text && obj->type != OBJ_execp && obj->type != OBJ_execpi) {
+                               substitute_newlines(p, a - 2);
+                       }
+                       p += a;
+                       p_max_size -= a;
+               }
+               obj = obj->next;
+       }
+#ifdef X11
+       /* load any new fonts we may have had */
+       if (need_to_load_fonts) {
+               load_fonts();
+       }
+#endif /* X11 */
+}
+
+void evaluate(const char *text, char *buffer)
+{
+       struct information *tmp_info;
+       struct text_object subroot;
+
+       tmp_info = malloc(sizeof(struct information));
+       memcpy(tmp_info, &info, sizeof(struct information));
+       parse_conky_vars(&subroot, text, buffer, tmp_info);
+       DBGP("evaluated '%s' to '%s'", text, buffer);
+
+       free_text_objects(&subroot, 1);
+       free(tmp_info);
+}
+
+double current_update_time, next_update_time, last_update_time;
+
+static void generate_text(void)
+{
+       struct information *cur = &info;
+       char *p;
+
+       special_count = 0;
+
+       /* update info */
+
+       current_update_time = get_time();
+
+       update_stuff();
+
+       /* add things to the buffer */
+
+       /* generate text */
+
+       p = text_buffer;
+
+       generate_text_internal(p, max_user_text, global_root_object, cur);
+
+       if (stuff_in_uppercase) {
+               char *tmp_p;
+
+               tmp_p = text_buffer;
+               while (*tmp_p) {
+                       *tmp_p = toupper(*tmp_p);
+                       tmp_p++;
+               }
+       }
+
+       next_update_time += update_interval;
+       if (next_update_time < get_time()) {
+               next_update_time = get_time() + update_interval;
+       } else if (next_update_time > get_time() + update_interval) {
+               next_update_time = get_time() + update_interval;
+       }
+       last_update_time = current_update_time;
+       total_updates++;
+}
+
+void set_update_interval(double interval)
+{
+       update_interval = interval;
+       update_interval_old = interval;
+}
+
+static inline int get_string_width(const char *s)
+{
+#ifdef X11
+       if (output_methods & TO_X) {
+               return *s ? calc_text_width(s, strlen(s)) : 0;
+       }
+#endif /* X11 */
+       return strlen(s);
+}
+
+#ifdef X11
+static int get_string_width_special(char *s, int special_index)
+{
+       char *p, *final;
+       int idx = 1;
+       int width = 0;
+       long i;
+
+       if ((output_methods & TO_X) == 0) {
+               return (s) ? strlen(s) : 0;
+       }
+
+       if (!s) {
+               return 0;
+       }
+
+       p = strndup(s, text_buffer_size);
+       final = p;
+
+       while (*p) {
+               if (*p == SPECIAL_CHAR) {
+                       /* shift everything over by 1 so that the special char
+                        * doesn't mess up the size calculation */
+                       for (i = 0; i < (long)strlen(p); i++) {
+                               *(p + i) = *(p + i + 1);
+                       }
+                       if (specials[special_index + idx].type == GRAPH
+                                       || specials[special_index + idx].type == GAUGE
+                                       || specials[special_index + idx].type == BAR) {
+                               width += specials[special_index + idx].width;
+                       }
+                       idx++;
+               } else if (*p == SECRIT_MULTILINE_CHAR) {
+                       *p = 0;
+                       break;
+               } else {
+                       p++;
+               }
+       }
+       if (strlen(final) > 1) {
+               width += calc_text_width(final, strlen(final));
+       }
+       free(final);
+       return width;
+}
+
+static int text_size_updater(char *s, int special_index);
+
+int last_font_height;
+static void update_text_area(void)
+{
+       int x = 0, y = 0;
+
+       if ((output_methods & TO_X) == 0)
+               return;
+       /* update text size if it isn't fixed */
+#ifdef OWN_WINDOW
+       if (!fixed_size)
+#endif
+       {
+               text_width = minimum_width;
+               text_height = 0;
+               last_font_height = font_height();
+               for_each_line(text_buffer, text_size_updater);
+               text_width += 1;
+               if (text_height < minimum_height) {
+                       text_height = minimum_height;
+               }
+               if (text_width > maximum_width && maximum_width > 0) {
+                       text_width = maximum_width;
+               }
+       }
+
+       /* get text position on workarea */
+       switch (text_alignment) {
+               case TOP_LEFT:
+                       x = gap_x;
+                       y = gap_y;
+                       break;
+
+               case TOP_RIGHT:
+                       x = workarea[2] - text_width - gap_x;
+                       y = gap_y;
+                       break;
+
+               case TOP_MIDDLE:
+                       x = workarea[2] / 2 - text_width / 2 - gap_x;
+                       y = gap_y;
+                       break;
+
+               default:
+               case BOTTOM_LEFT:
+                       x = gap_x;
+                       y = workarea[3] - text_height - gap_y;
+                       break;
+
+               case BOTTOM_RIGHT:
+                       x = workarea[2] - text_width - gap_x;
+                       y = workarea[3] - text_height - gap_y;
+                       break;
+
+               case BOTTOM_MIDDLE:
+                       x = workarea[2] / 2 - text_width / 2 - gap_x;
+                       y = workarea[3] - text_height - gap_y;
+                       break;
+
+               case MIDDLE_LEFT:
+                       x = gap_x;
+                       y = workarea[3] / 2 - text_height / 2 - gap_y;
+                       break;
+
+               case MIDDLE_RIGHT:
+                       x = workarea[2] - text_width - gap_x;
+                       y = workarea[3] / 2 - text_height / 2 - gap_y;
+                       break;
+
+#ifdef OWN_WINDOW
+               case NONE:      // Let the WM manage the window
+                       x = window.x;
+                       y = window.y;
+
+                       fixed_pos = 1;
+                       fixed_size = 1;
+                       break;
+#endif
+       }
+#ifdef OWN_WINDOW
+
+       if (own_window && !fixed_pos) {
+               x += workarea[0];
+               y += workarea[1];
+               text_start_x = window.border_inner_margin + window.border_outer_margin + window.border_width;
+               text_start_y = window.border_inner_margin + window.border_outer_margin + window.border_width;
+               window.x = x - window.border_inner_margin - window.border_outer_margin - window.border_width;
+               window.y = y - window.border_inner_margin - window.border_outer_margin - window.border_width;
+       } else
+#endif
+       {
+               /* If window size doesn't match to workarea's size,
+                * then window probably includes panels (gnome).
+                * Blah, doesn't work on KDE. */
+               if (workarea[2] != window.width || workarea[3] != window.height) {
+                       y += workarea[1];
+                       x += workarea[0];
+               }
+
+               text_start_x = x;
+               text_start_y = y;
+       }
+#ifdef HAVE_LUA
+       /* update lua window globals */
+       llua_update_window_table(text_start_x, text_start_y, text_width, text_height);
+#endif /* HAVE_LUA */
+}
+
+/* drawing stuff */
+
+static int cur_x, cur_y;       /* current x and y for drawing */
+#endif
+//draw_mode also without X11 because we only need to print to stdout with FG
+static int draw_mode;          /* FG, BG or OUTLINE */
+#ifdef X11
+static long current_color;
+
+static int text_size_updater(char *s, int special_index)
+{
+       int w = 0;
+       char *p;
+
+       if ((output_methods & TO_X) == 0)
+               return 0;
+       /* get string widths and skip specials */
+       p = s;
+       while (*p) {
+               if (*p == SPECIAL_CHAR) {
+                       *p = '\0';
+                       w += get_string_width(s);
+                       *p = SPECIAL_CHAR;
+
+                       if (specials[special_index].type == BAR
+                                       || specials[special_index].type == GAUGE
+                                       || specials[special_index].type == GRAPH) {
+                               w += specials[special_index].width;
+                               if (specials[special_index].height > last_font_height) {
+                                       last_font_height = specials[special_index].height;
+                                       last_font_height += font_height();
+                               }
+                       } else if (specials[special_index].type == OFFSET) {
+                               if (specials[special_index].arg > 0) {
+                                       w += specials[special_index].arg;
+                               }
+                       } else if (specials[special_index].type == VOFFSET) {
+                               last_font_height += specials[special_index].arg;
+                       } else if (specials[special_index].type == GOTO) {
+                               if (specials[special_index].arg > cur_x) {
+                                       w = (int) specials[special_index].arg;
+                               }
+                       } else if (specials[special_index].type == TAB) {
+                               int start = specials[special_index].arg;
+                               int step = specials[special_index].width;
+
+                               if (!step || step < 0) {
+                                       step = 10;
+                               }
+                               w += step - (cur_x - text_start_x - start) % step;
+                       } else if (specials[special_index].type == FONT) {
+                               selected_font = specials[special_index].font_added;
+                               if (font_height() > last_font_height) {
+                                       last_font_height = font_height();
+                               }
+                       }
+
+                       special_index++;
+                       s = p + 1;
+               } else if (*p == SECRIT_MULTILINE_CHAR) {
+                       int lw;
+                       *p = '\0';
+                       lw = get_string_width(s);
+                       *p = SECRIT_MULTILINE_CHAR;
+                       s = p + 1;
+                       w = lw > w ? lw : w;
+                       text_height += last_font_height;
+               }
+               p++;
+       }
+       w += get_string_width(s);
+       if (w > text_width) {
+               text_width = w;
+       }
+       if (text_width > maximum_width && maximum_width) {
+               text_width = maximum_width;
+       }
+
+       text_height += last_font_height;
+       last_font_height = font_height();
+       return special_index;
+}
+#endif /* X11 */
+
+static inline void set_foreground_color(long c)
+{
+#ifdef X11
+       if (output_methods & TO_X) {
+               current_color = c;
+               XSetForeground(display, window.gc, c);
+       }
+#endif /* X11 */
+#ifdef NCURSES
+       if (output_methods & TO_NCURSES) {
+               attron(COLOR_PAIR(c));
+       }
+#endif /* NCURSES */
+       UNUSED(c);
+       return;
+}
+
+static void draw_string(const char *s)
+{
+       int i, i2, pos, width_of_s;
+       int max = 0;
+       int added;
+       char *s_with_newlines;
+
+       if (s[0] == '\0') {
+               return;
+       }
+
+       width_of_s = get_string_width(s);
+       s_with_newlines = strdup(s);
+       for(i = 0; i < (int) strlen(s_with_newlines); i++) {
+               if(s_with_newlines[i] == SECRIT_MULTILINE_CHAR) {
+                       s_with_newlines[i] = '\n';
+               }
+       }
+       if ((output_methods & TO_STDOUT) && draw_mode == FG) {
+               printf("%s\n", s_with_newlines);
+               if (extra_newline) fputc('\n', stdout);
+               fflush(stdout); /* output immediately, don't buffer */
+       }
+       if ((output_methods & TO_STDERR) && draw_mode == FG) {
+               fprintf(stderr, "%s\n", s_with_newlines);
+               fflush(stderr); /* output immediately, don't buffer */
+       }
+       if ((output_methods & OVERWRITE_FILE) && draw_mode == FG && overwrite_fpointer) {
+               fprintf(overwrite_fpointer, "%s\n", s_with_newlines);
+       }
+       if ((output_methods & APPEND_FILE) && draw_mode == FG && append_fpointer) {
+               fprintf(append_fpointer, "%s\n", s_with_newlines);
+       }
+#ifdef NCURSES
+       if ((output_methods & TO_NCURSES) && draw_mode == FG) {
+               printw("%s", s_with_newlines);
+       }
+#endif
+       free(s_with_newlines);
+       memset(tmpstring1, 0, text_buffer_size);
+       memset(tmpstring2, 0, text_buffer_size);
+       strncpy(tmpstring1, s, text_buffer_size - 1);
+       pos = 0;
+       added = 0;
+
+#ifdef X11
+       if (output_methods & TO_X) {
+               max = ((text_width - width_of_s) / get_string_width(" "));
+       }
+#endif /* X11 */
+       /* This code looks for tabs in the text and coverts them to spaces.
+        * The trick is getting the correct number of spaces, and not going
+        * over the window's size without forcing the window larger. */
+       for (i = 0; i < (int) text_buffer_size; i++) {
+               if (tmpstring1[i] == '\t') {
+                       i2 = 0;
+                       for (i2 = 0; i2 < (8 - (1 + pos) % 8) && added <= max; i2++) {
+                               /* guard against overrun */
+                               tmpstring2[MIN(pos + i2, (int)text_buffer_size - 1)] = ' ';
+                               added++;
+                       }
+                       pos += i2;
+               } else {
+                       /* guard against overrun */
+                       tmpstring2[MIN(pos, (int) text_buffer_size - 1)] = tmpstring1[i];
+                       pos++;
+               }
+       }
+#ifdef X11
+       if (output_methods & TO_X) {
+               if (text_width == maximum_width) {
+                       /* this means the text is probably pushing the limit,
+                        * so we'll chop it */
+                       while (cur_x + get_string_width(tmpstring2) - text_start_x
+                                       > maximum_width && strlen(tmpstring2) > 0) {
+                               tmpstring2[strlen(tmpstring2) - 1] = '\0';
+                       }
+               }
+       }
+#endif /* X11 */
+       s = tmpstring2;
+#ifdef X11
+       if (output_methods & TO_X) {
+#ifdef XFT
+               if (use_xft) {
+                       XColor c;
+                       XftColor c2;
+
+                       c.pixel = current_color;
+                       XQueryColor(display, DefaultColormap(display, screen), &c);
+
+                       c2.pixel = c.pixel;
+                       c2.color.red = c.red;
+                       c2.color.green = c.green;
+                       c2.color.blue = c.blue;
+                       c2.color.alpha = fonts[selected_font].font_alpha;
+                       if (utf8_mode) {
+                               XftDrawStringUtf8(window.xftdraw, &c2, fonts[selected_font].xftfont,
+                                       cur_x, cur_y, (const XftChar8 *) s, strlen(s));
+                       } else {
+                               XftDrawString8(window.xftdraw, &c2, fonts[selected_font].xftfont,
+                                       cur_x, cur_y, (const XftChar8 *) s, strlen(s));
+                       }
+               } else
+#endif
+               {
+                       XDrawString(display, window.drawable, window.gc, cur_x, cur_y, s,
+                               strlen(s));
+               }
+               cur_x += width_of_s;
+       }
+#endif /* X11 */
+       memcpy(tmpstring1, s, text_buffer_size);
+}
+
+int draw_each_line_inner(char *s, int special_index, int last_special_applied)
+{
+#ifdef X11
+       int font_h = font_height();
+       int cur_y_add = 0;
+#endif /* X11 */
+       char *recurse = 0;
+       char *p = s;
+       int last_special_needed = -1;
+       int orig_special_index = special_index;
+
+#ifdef X11
+       cur_x = text_start_x;
+       cur_y += font_ascent();
+#endif /* X11 */
+
+       while (*p) {
+               if (*p == SECRIT_MULTILINE_CHAR) {
+                       /* special newline marker for multiline objects */
+                       recurse = p + 1;
+                       *p = '\0';
+                       break;
+               }
+               if (*p == SPECIAL_CHAR || last_special_applied > -1) {
+#ifdef X11
+                       int w = 0;
+#endif /* X11 */
+
+                       /* draw string before special, unless we're dealing multiline
+                        * specials */
+                       if (last_special_applied > -1) {
+                               special_index = last_special_applied;
+                       } else {
+                               *p = '\0';
+                               draw_string(s);
+                               *p = SPECIAL_CHAR;
+                               s = p + 1;
+                       }
+                       /* draw special */
+                       switch (specials[special_index].type) {
+#ifdef X11
+                               case HORIZONTAL_LINE:
+                               {
+                                       int h = specials[special_index].height;
+                                       int mid = font_ascent() / 2;
+
+                                       w = text_start_x + text_width - cur_x;
+
+                                       XSetLineAttributes(display, window.gc, h, LineSolid,
+                                               CapButt, JoinMiter);
+                                       XDrawLine(display, window.drawable, window.gc, cur_x,
+                                               cur_y - mid / 2, cur_x + w, cur_y - mid / 2);
+                                       break;
+                               }
+
+                               case STIPPLED_HR:
+                               {
+                                       int h = specials[special_index].height;
+                                       int tmp_s = specials[special_index].arg;
+                                       int mid = font_ascent() / 2;
+                                       char ss[2] = { tmp_s, tmp_s };
+
+                                       w = text_start_x + text_width - cur_x - 1;
+                                       XSetLineAttributes(display, window.gc, h, LineOnOffDash,
+                                               CapButt, JoinMiter);
+                                       XSetDashes(display, window.gc, 0, ss, 2);
+                                       XDrawLine(display, window.drawable, window.gc, cur_x,
+                                               cur_y - mid / 2, cur_x + w, cur_y - mid / 2);
+                                       break;
+                               }
+
+                               case BAR:
+                               {
+                                       int h, bar_usage, by;
+                                       if (cur_x - text_start_x > maximum_width
+                                                       && maximum_width > 0) {
+                                               break;
+                                       }
+                                       h = specials[special_index].height;
+                                       bar_usage = specials[special_index].arg;
+                                       by = cur_y - (font_ascent() / 2) - 1;
+
+                                       if (h < font_h) {
+                                               by -= h / 2 - 1;
+                                       }
+                                       w = specials[special_index].width;
+                                       if (w == 0) {
+                                               w = text_start_x + text_width - cur_x - 1;
+                                       }
+                                       if (w < 0) {
+                                               w = 0;
+                                       }
+
+                                       XSetLineAttributes(display, window.gc, 1, LineSolid,
+                                               CapButt, JoinMiter);
+
+                                       XDrawRectangle(display, window.drawable, window.gc, cur_x,
+                                               by, w, h);
+                                       XFillRectangle(display, window.drawable, window.gc, cur_x,
+                                               by, w * bar_usage / 255, h);
+                                       if (h > cur_y_add
+                                                       && h > font_h) {
+                                               cur_y_add = h;
+                                       }
+                                       break;
+                               }
+
+                               case GAUGE: /* new GAUGE  */
+                               {
+                                       int h, by = 0;
+                                       unsigned long last_colour = current_color;
+#ifdef MATH
+                                       float angle, px, py;
+                                       int usage;
+#endif /* MATH */
+
+                                       if (cur_x - text_start_x > maximum_width
+                                                       && maximum_width > 0) {
+                                               break;
+                                       }
+
+                                       h = specials[special_index].height;
+                                       by = cur_y - (font_ascent() / 2) - 1;
+
+                                       if (h < font_h) {
+                                               by -= h / 2 - 1;
+                                       }
+                                       w = specials[special_index].width;
+                                       if (w == 0) {
+                                               w = text_start_x + text_width - cur_x - 1;
+                                       }
+                                       if (w < 0) {
+                                               w = 0;
+                                       }
+
+                                       XSetLineAttributes(display, window.gc, 1, LineSolid,
+                                                       CapButt, JoinMiter);
+
+                                       XDrawArc(display, window.drawable, window.gc,
+                                                       cur_x, by, w, h * 2, 0, 180*64);
+
+#ifdef MATH
+                                       usage = specials[special_index].arg;
+                                       angle = (M_PI)*(float)(usage)/255.;
+                                       px = (float)(cur_x+(w/2.))-(float)(w/2.)*cos(angle);
+                                       py = (float)(by+(h))-(float)(h)*sin(angle);
+
+                                       XDrawLine(display, window.drawable, window.gc,
+                                                       cur_x + (w/2.), by+(h), (int)(px), (int)(py));
+#endif /* MATH */
+
+                                       if (h > cur_y_add
+                                                       && h > font_h) {
+                                               cur_y_add = h;
+                                       }
+
+                                       set_foreground_color(last_colour);
+
+                                       break;
+
+                               }
+
+                               case GRAPH:
+                               {
+                                       int h, by, i = 0, j = 0;
+                                       int colour_idx = 0;
+                                       unsigned long last_colour = current_color;
+                                       unsigned long *tmpcolour = 0;
+                                       if (cur_x - text_start_x > maximum_width
+                                                       && maximum_width > 0) {
+                                               break;
+                                       }
+                                       h = specials[special_index].height;
+                                       by = cur_y - (font_ascent() / 2) - 1;
+
+                                       if (h < font_h) {
+                                               by -= h / 2 - 1;
+                                       }
+                                       w = specials[special_index].width;
+                                       if (w == 0) {
+                                               w = text_start_x + text_width - cur_x - 1;
+                                       }
+                                       if (w < 0) {
+                                               w = 0;
+                                       }
+                                       if (draw_graph_borders) {
+                                               XSetLineAttributes(display, window.gc, 1, LineSolid,
+                                                       CapButt, JoinMiter);
+                                               XDrawRectangle(display, window.drawable, window.gc,
+                                                       cur_x, by, w, h);
+                                       }
+                                       XSetLineAttributes(display, window.gc, 1, LineSolid,
+                                               CapButt, JoinMiter);
+
+                                       if (specials[special_index].last_colour != 0
+                                                       || specials[special_index].first_colour != 0) {
+                                               tmpcolour = do_gradient(w - 1, specials[special_index].last_colour, specials[special_index].first_colour);
+                                       }
+                                       colour_idx = 0;
+                                       for (i = w - 2; i > -1; i--) {
+                                               if (specials[special_index].last_colour != 0
+                                                               || specials[special_index].first_colour != 0) {
+                                                       if (specials[special_index].tempgrad) {
+#ifdef DEBUG_lol
+                                                               assert(
+                                                                               (int)((float)(w - 2) - specials[special_index].graph[j] *
+                                                                                       (w - 2) / (float)specials[special_index].graph_scale)
+                                                                               < w - 1
+                                                                         );
+                                                               assert(
+                                                                               (int)((float)(w - 2) - specials[special_index].graph[j] *
+                                                                                       (w - 2) / (float)specials[special_index].graph_scale)
+                                                                               > -1
+                                                                         );
+                                                               if (specials[special_index].graph[j] == specials[special_index].graph_scale) {
+                                                                       assert(
+                                                                                       (int)((float)(w - 2) - specials[special_index].graph[j] *
+                                                                                               (w - 2) / (float)specials[special_index].graph_scale)
+                                                                                       == 0
+                                                                                 );
+                                                               }
+#endif /* DEBUG_lol */
+                                                               XSetForeground(display, window.gc, tmpcolour[
+                                                                               (int)((float)(w - 2) - specials[special_index].graph[j] *
+                                                                                       (w - 2) / (float)specials[special_index].graph_scale)
+                                                                               ]);
+                                                       } else {
+                                                               XSetForeground(display, window.gc, tmpcolour[colour_idx++]);
+                                                       }
+                                               }
+                                               /* this is mugfugly, but it works */
+                                               XDrawLine(display, window.drawable, window.gc,
+                                                               cur_x + i + 1, by + h, cur_x + i + 1,
+                                                               round_to_int((double)by + h - specials[special_index].graph[j] *
+                                                                       (h - 1) / specials[special_index].graph_scale));
+                                               if ((w - i) / ((float) (w - 2) /
+                                                                       (specials[special_index].graph_width)) > j
+                                                               && j < MAX_GRAPH_DEPTH - 3) {
+                                                       j++;
+                                               }
+                                       }
+                                       if (tmpcolour) free(tmpcolour);
+                                       if (h > cur_y_add
+                                                       && h > font_h) {
+                                               cur_y_add = h;
+                                       }
+                                       /* if (draw_mode == BG) {
+                                               set_foreground_color(default_bg_color);
+                                       } else if (draw_mode == OUTLINE) {
+                                               set_foreground_color(default_out_color);
+                                       } else {
+                                               set_foreground_color(default_fg_color);
+                                       } */
+                                       if (show_graph_range) {
+                                               int tmp_x = cur_x;
+                                               int tmp_y = cur_y;
+                                               unsigned short int seconds = update_interval * w;
+                                               char *tmp_day_str;
+                                               char *tmp_hour_str;
+                                               char *tmp_min_str;
+                                               char *tmp_sec_str;
+                                               char *tmp_str;
+                                               unsigned short int timeunits;
+                                               if (seconds != 0) {
+                                                       timeunits = seconds / 86400; seconds %= 86400;
+                                                       if (timeunits > 0) {
+                                                               asprintf(&tmp_day_str, "%dd", timeunits);
+                                                       } else {
+                                                               tmp_day_str = strdup("");
+                                                       }
+                                                       timeunits = seconds / 3600; seconds %= 3600;
+                                                       if (timeunits > 0) {
+                                                               asprintf(&tmp_hour_str, "%dh", timeunits);
+                                                       } else {
+                                                               tmp_hour_str = strdup("");
+                                                       }
+                                                       timeunits = seconds / 60; seconds %= 60;
+                                                       if (timeunits > 0) {
+                                                               asprintf(&tmp_min_str, "%dm", timeunits);
+                                                       } else {
+                                                               tmp_min_str = strdup("");
+                                                       }
+                                                       if (seconds > 0) {
+                                                               asprintf(&tmp_sec_str, "%ds", seconds);
+                                                       } else {
+                                                               tmp_sec_str = strdup("");
+                                                       }
+                                                       asprintf(&tmp_str, "%s%s%s%s", tmp_day_str, tmp_hour_str, tmp_min_str, tmp_sec_str);
+                                                       free(tmp_day_str); free(tmp_hour_str); free(tmp_min_str); free(tmp_sec_str);
+                                               } else {
+                                                       asprintf(&tmp_str, "Range not possible"); // should never happen, but better safe then sorry
+                                               }
+                                               cur_x += (w / 2) - (font_ascent() * (strlen(tmp_str) / 2));
+                                               cur_y += font_h / 2;
+                                               draw_string(tmp_str);
+                                               free(tmp_str);
+                                               cur_x = tmp_x;
+                                               cur_y = tmp_y;
+                                       }
+#ifdef MATH
+                                       if (show_graph_scale && (specials[special_index].show_scale == 1)) {
+                                               int tmp_x = cur_x;
+                                               int tmp_y = cur_y;
+                                               char *tmp_str;
+                                               cur_x += font_ascent() / 2;
+                                               cur_y += font_h / 2;
+                                               tmp_str = (char *)
+                                                       calloc(log10(floor(specials[special_index].graph_scale)) + 4,
+                                                                       sizeof(char));
+                                               sprintf(tmp_str, "%.1f", specials[special_index].graph_scale);
+                                               draw_string(tmp_str);
+                                               free(tmp_str);
+                                               cur_x = tmp_x;
+                                               cur_y = tmp_y;
+                                       }
+#endif
+                                       set_foreground_color(last_colour);
+                                       break;
+                               }
+
+                               case FONT:
+                               {
+                                       int old = font_ascent();
+
+                                       cur_y -= font_ascent();
+                                       selected_font = specials[special_index].font_added;
+                                       set_font();
+                                       if (cur_y + font_ascent() < cur_y + old) {
+                                               cur_y += old;
+                                       } else {
+                                               cur_y += font_ascent();
+                                       }
+                                       font_h = font_height();
+                                       break;
+                               }
+#endif /* X11 */
+                               case FG:
+                                       if (draw_mode == FG) {
+                                               set_foreground_color(specials[special_index].arg);
+                                       }
+                                       break;
+
+#ifdef X11
+                               case BG:
+                                       if (draw_mode == BG) {
+                                               set_foreground_color(specials[special_index].arg);
+                                       }
+                                       break;
+
+                               case OUTLINE:
+                                       if (draw_mode == OUTLINE) {
+                                               set_foreground_color(specials[special_index].arg);
+                                       }
+                                       break;
+
+                               case OFFSET:
+                                       w += specials[special_index].arg;
+                                       last_special_needed = special_index;
+                                       break;
+
+                               case VOFFSET:
+                                       cur_y += specials[special_index].arg;
+                                       break;
+
+                               case GOTO:
+                                       if (specials[special_index].arg >= 0) {
+                                               cur_x = (int) specials[special_index].arg;
+                                       }
+                                       last_special_needed = special_index;
+                                       break;
+
+                               case TAB:
+                               {
+                                       int start = specials[special_index].arg;
+                                       int step = specials[special_index].width;
+
+                                       if (!step || step < 0) {
+                                               step = 10;
+                                       }
+                                       w = step - (cur_x - text_start_x - start) % step;
+                                       last_special_needed = special_index;
+                                       break;
+                               }
+
+                               case ALIGNR:
+                               {
+                                       /* TODO: add back in "+ window.border_inner_margin" to the end of
+                                        * this line? */
+                                       int pos_x = text_start_x + text_width -
+                                               get_string_width_special(s, special_index);
+
+                                       /* printf("pos_x %i text_start_x %i text_width %i cur_x %i "
+                                               "get_string_width(p) %i gap_x %i "
+                                               "specials[special_index].arg %i window.border_inner_margin %i "
+                                               "window.border_width %i\n", pos_x, text_start_x, text_width,
+                                               cur_x, get_string_width_special(s), gap_x,
+                                               specials[special_index].arg, window.border_inner_margin,
+                                               window.border_width); */
+                                       if (pos_x > specials[special_index].arg && pos_x > cur_x) {
+                                               cur_x = pos_x - specials[special_index].arg;
+                                       }
+                                       last_special_needed = special_index;
+                                       break;
+                               }
+
+                               case ALIGNC:
+                               {
+                                       int pos_x = (text_width) / 2 - get_string_width_special(s,
+                                                       special_index) / 2 - (cur_x -
+                                                               text_start_x);
+                                       /* int pos_x = text_start_x + text_width / 2 -
+                                               get_string_width_special(s) / 2; */
+
+                                       /* printf("pos_x %i text_start_x %i text_width %i cur_x %i "
+                                               "get_string_width(p) %i gap_x %i "
+                                               "specials[special_index].arg %i\n", pos_x, text_start_x,
+                                               text_width, cur_x, get_string_width(s), gap_x,
+                                               specials[special_index].arg); */
+                                       if (pos_x > specials[special_index].arg) {
+                                               w = pos_x - specials[special_index].arg;
+                                       }
+                                       last_special_needed = special_index;
+                                       break;
+                               }
+#endif /* X11 */
+                       }
+
+#ifdef X11
+                       cur_x += w;
+#endif /* X11 */
+
+                       if (special_index != last_special_applied) {
+                               special_index++;
+                       } else {
+                               special_index = orig_special_index;
+                               last_special_applied = -1;
+                       }
+               }
+               p++;
+       }
+
+#ifdef X11
+       cur_y += cur_y_add;
+#endif /* X11 */
+       draw_string(s);
+#ifdef NCURSES
+       if (output_methods & TO_NCURSES) {
+               printw("\n");
+       }
+#endif /* NCURSES */
+#ifdef X11
+       cur_y += font_descent();
+#endif /* X11 */
+       if (recurse && *recurse) {
+               special_index = draw_each_line_inner(recurse, special_index, last_special_needed);
+               *(recurse - 1) = SECRIT_MULTILINE_CHAR;
+       }
+       return special_index;
+}
+
+static int draw_line(char *s, int special_index)
+{
+#ifdef X11
+       if (output_methods & TO_X) {
+               return draw_each_line_inner(s, special_index, -1);
+       }
+#endif /* X11 */
+#ifdef NCURSES
+       if (output_methods & TO_NCURSES) {
+               return draw_each_line_inner(s, special_index, -1);
+       }
+#endif /* NCURSES */
+       draw_string(s);
+       UNUSED(special_index);
+       return 0;
+}
+
+static void draw_text(void)
+{
+#ifdef X11
+#ifdef HAVE_LUA
+       llua_draw_pre_hook();
+#endif /* HAVE_LUA */
+       if (output_methods & TO_X) {
+               cur_y = text_start_y;
+
+               /* draw borders */
+               if (draw_borders && window.border_width > 0) {
+                       if (stippled_borders) {
+                               char ss[2] = { stippled_borders, stippled_borders };
+                               XSetLineAttributes(display, window.gc, window.border_width, LineOnOffDash,
+                                       CapButt, JoinMiter);
+                               XSetDashes(display, window.gc, 0, ss, 2);
+                       } else {
+                               XSetLineAttributes(display, window.gc, window.border_width, LineSolid,
+                                       CapButt, JoinMiter);
+                       }
+
+                       XDrawRectangle(display, window.drawable, window.gc,
+                               text_start_x - window.border_inner_margin - window.border_width,
+                               text_start_y - window.border_inner_margin - window.border_width,
+                               text_width + window.border_inner_margin * 2 + window.border_width * 2,
+                               text_height + window.border_inner_margin * 2 + window.border_width * 2);
+               }
+
+               /* draw text */
+       }
+       setup_fonts();
+#endif /* X11 */
+#ifdef NCURSES
+       init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
+       attron(COLOR_PAIR(COLOR_WHITE));
+#endif /* NCURSES */
+       for_each_line(text_buffer, draw_line);
+#if defined(HAVE_LUA) && defined(X11)
+       llua_draw_post_hook();
+#endif /* HAVE_LUA */
+}
+
+static void draw_stuff(void)
+{
+#ifdef IMLIB2
+       cimlib_render(text_start_x, text_start_y, window.width, window.height);
+#endif /* IMLIB2 */
+       if (overwrite_file) {
+               overwrite_fpointer = fopen(overwrite_file, "w");
+               if(!overwrite_fpointer)
+                       NORM_ERR("Can't overwrite '%s' anymore", overwrite_file);
+       }
+       if (append_file) {
+               append_fpointer = fopen(append_file, "a");
+               if(!append_fpointer)
+                       NORM_ERR("Can't append '%s' anymore", append_file);
+       }
+#ifdef X11
+       if (output_methods & TO_X) {
+               selected_font = 0;
+               if (draw_shades && !draw_outline) {
+                       text_start_x++;
+                       text_start_y++;
+                       set_foreground_color(default_bg_color);
+                       draw_mode = BG;
+                       draw_text();
+                       text_start_x--;
+                       text_start_y--;
+               }
+
+               if (draw_outline) {
+                       int i, j;
+                       selected_font = 0;
+
+                       for (i = -1; i < 2; i++) {
+                               for (j = -1; j < 2; j++) {
+                                       if (i == 0 && j == 0) {
+                                               continue;
+                                       }
+                                       text_start_x += i;
+                                       text_start_y += j;
+                                       set_foreground_color(default_out_color);
+                                       draw_mode = OUTLINE;
+                                       draw_text();
+                                       text_start_x -= i;
+                                       text_start_y -= j;
+                               }
+                       }
+               }
+
+               set_foreground_color(default_fg_color);
+       }
+#endif /* X11 */
+       draw_mode = FG;
+       draw_text();
+#ifdef X11
+       xdbe_swap_buffers();
+       if (output_methods & TO_X) {
+#ifdef HAVE_XDBE
+#endif
+       }
+#endif /* X11 */
+       if(overwrite_fpointer) {
+               fclose(overwrite_fpointer);
+               overwrite_fpointer = 0;
+       }
+       if(append_fpointer) {
+               fclose(append_fpointer);
+               append_fpointer = 0;
+       }
+}
+
+#ifdef X11
+static void clear_text(int exposures)
+{
+#ifdef HAVE_XDBE
+       if (use_xdbe) {
+               /* The swap action is XdbeBackground, which clears */
+               return;
+       } else
+#endif
+       if (display && window.window) { // make sure these are !null
+               /* there is some extra space for borders and outlines */
+               XClearArea(display, window.window, text_start_x - window.border_inner_margin - window.border_outer_margin - window.border_width,
+                       text_start_y - window.border_inner_margin - window.border_outer_margin - window.border_width,
+                       text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2,
+                       text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2, exposures ? True : 0);
+       }
+}
+#endif /* X11 */
+
+static int need_to_update;
+
+/* update_text() generates new text and clears old text area */
+static void update_text(void)
+{
+#ifdef IMLIB2
+       cimlib_cleanup();
+#endif /* IMLIB2 */
+       generate_text();
+#ifdef X11
+       if (output_methods & TO_X)
+               clear_text(1);
+#endif /* X11 */
+       need_to_update = 1;
+#ifdef HAVE_LUA
+       llua_update_info(&info, update_interval);
+#endif /* HAVE_LUA */
+}
+
+#ifdef HAVE_SYS_INOTIFY_H
+int inotify_fd;
+#endif
+
+static void main_loop(void)
+{
+       int terminate = 0;
+#ifdef SIGNAL_BLOCKING
+       sigset_t newmask, oldmask;
+#endif
+       double t;
+#ifdef HAVE_SYS_INOTIFY_H
+       int inotify_config_wd = -1;
+#define INOTIFY_EVENT_SIZE  (sizeof(struct inotify_event))
+#define INOTIFY_BUF_LEN     (20 * (INOTIFY_EVENT_SIZE + 16))
+       char inotify_buff[INOTIFY_BUF_LEN];
+#endif /* HAVE_SYS_INOTIFY_H */
+
+
+#ifdef SIGNAL_BLOCKING
+       sigemptyset(&newmask);
+       sigaddset(&newmask, SIGINT);
+       sigaddset(&newmask, SIGTERM);
+       sigaddset(&newmask, SIGUSR1);
+#endif
+
+       last_update_time = 0.0;
+       next_update_time = get_time();
+       info.looped = 0;
+       while (terminate == 0 && (total_run_times == 0 || info.looped < total_run_times)) {
+               if(update_interval_bat != NOBATTERY && update_interval_bat != update_interval_old) {
+                       char buf[max_user_text];
+
+                       get_battery_short_status(buf, max_user_text, "BAT0");
+                       if(buf[0] == 'D') {
+                               update_interval = update_interval_bat;
+                       } else {
+                               update_interval = update_interval_old;
+                       }
+               }
+               info.looped++;
+
+#ifdef SIGNAL_BLOCKING
+               /* block signals.  we will inspect for pending signals later */
+               if (sigprocmask(SIG_BLOCK, &newmask, &oldmask) < 0) {
+                       CRIT_ERR(NULL, NULL, "unable to sigprocmask()");
+               }
+#endif
+
+#ifdef X11
+               if (output_methods & TO_X) {
+                       XFlush(display);
+
+                       /* wait for X event or timeout */
+
+                       if (!XPending(display)) {
+                               fd_set fdsr;
+                               struct timeval tv;
+                               int s;
+                               t = next_update_time - get_time();
+
+                               if (t < 0) {
+                                       t = 0;
+                               } else if (t > update_interval) {
+                                       t = update_interval;
+                               }
+
+                               tv.tv_sec = (long) t;
+                               tv.tv_usec = (long) (t * 1000000) % 1000000;
+                               FD_ZERO(&fdsr);
+                               FD_SET(ConnectionNumber(display), &fdsr);
+
+                               s = select(ConnectionNumber(display) + 1, &fdsr, 0, 0, &tv);
+                               if (s == -1) {
+                                       if (errno != EINTR) {
+                                               NORM_ERR("can't select(): %s", strerror(errno));
+                                       }
+                               } else {
+                                       /* timeout */
+                                       if (s == 0) {
+                                               update_text();
+                                       }
+                               }
+                       }
+
+                       if (need_to_update) {
+#ifdef OWN_WINDOW
+                               int wx = window.x, wy = window.y;
+#endif
+
+                               need_to_update = 0;
+                               selected_font = 0;
+                               update_text_area();
+#ifdef OWN_WINDOW
+                               if (own_window) {
+                                       int changed = 0;
+
+                                       /* resize window if it isn't right size */
+                                       if (!fixed_size
+                                                       && (text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2 != window.width
+                                                               || text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2 != window.height)) {
+                                               window.width = text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2;
+                                               window.height = text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2;
+                                               draw_stuff(); /* redraw everything in our newly sized window */
+                                               XResizeWindow(display, window.window, window.width,
+                                                               window.height); /* resize window */
+                                               set_transparent_background(window.window);
+#ifdef HAVE_XDBE
+                                               /* swap buffers */
+                                               xdbe_swap_buffers();
+#endif
+
+                                               changed++;
+#ifdef HAVE_LUA
+                                               /* update lua window globals */
+                                               llua_update_window_table(text_start_x, text_start_y, text_width, text_height);
+#endif /* HAVE_LUA */
+                                       }
+
+                                       /* move window if it isn't in right position */
+                                       if (!fixed_pos && (window.x != wx || window.y != wy)) {
+                                               XMoveWindow(display, window.window, window.x, window.y);
+                                               changed++;
+                                       }
+
+                                       /* update struts */
+                                       if (changed && window.type == TYPE_PANEL) {
+                                               int sidenum = -1;
+
+                                               fprintf(stderr, PACKAGE_NAME": defining struts\n");
+                                               fflush(stderr);
+
+                                               switch (text_alignment) {
+                                                       case TOP_LEFT:
+                                                       case TOP_RIGHT:
+                                                       case TOP_MIDDLE:
+                                                               {
+                                                                       sidenum = 2;
+                                                                       break;
+                                                               }
+                                                       case BOTTOM_LEFT:
+                                                       case BOTTOM_RIGHT:
+                                                       case BOTTOM_MIDDLE:
+                                                               {
+                                                                       sidenum = 3;
+                                                                       break;
+                                                               }
+                                                       case MIDDLE_LEFT:
+                                                               {
+                                                                       sidenum = 0;
+                                                                       break;
+                                                               }
+                                                       case MIDDLE_RIGHT:
+                                                               {
+                                                                       sidenum = 1;
+                                                                       break;
+                                                               }
+                                               }
+
+                                               set_struts(sidenum);
+                                       }
+                               }
+#endif
+
+                               clear_text(1);
+
+#ifdef HAVE_XDBE
+                               if (use_xdbe) {
+                                       XRectangle r;
+
+                                       r.x = text_start_x - window.border_inner_margin - window.border_outer_margin - window.border_width;
+                                       r.y = text_start_y - window.border_inner_margin - window.border_outer_margin - window.border_width;
+                                       r.width = text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2;
+                                       r.height = text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2;
+                                       XUnionRectWithRegion(&r, x11_stuff.region, x11_stuff.region);
+                               }
+#endif
+                       }
+
+                       /* handle X events */
+                       while (XPending(display)) {
+                               XEvent ev;
+
+                               XNextEvent(display, &ev);
+                               switch (ev.type) {
+                                       case Expose:
+                                       {
+                                               XRectangle r;
+                                               r.x = ev.xexpose.x;
+                                               r.y = ev.xexpose.y;
+                                               r.width = ev.xexpose.width;
+                                               r.height = ev.xexpose.height;
+                                               XUnionRectWithRegion(&r, x11_stuff.region, x11_stuff.region);
+                                               break;
+                                       }
+
+                                       case PropertyNotify:
+                                       {
+                                               if ( ev.xproperty.state == PropertyNewValue ) {
+                                                       get_x11_desktop_info( ev.xproperty.display, ev.xproperty.atom );
+                                               }
+                                               break;
+                                       }
+
+#ifdef OWN_WINDOW
+                                       case ReparentNotify:
+                                               /* set background to ParentRelative for all parents */
+                                               if (own_window) {
+                                                       set_transparent_background(window.window);
+                                               }
+                                               break;
+
+                                       case ConfigureNotify:
+                                               if (own_window) {
+                                                       /* if window size isn't what expected, set fixed size */
+                                                       if (ev.xconfigure.width != window.width
+                                                                       || ev.xconfigure.height != window.height) {
+                                                               if (window.width != 0 && window.height != 0) {
+                                                                       fixed_size = 1;
+                                                               }
+
+                                                               /* clear old stuff before screwing up
+                                                                * size and pos */
+                                                               clear_text(1);
+
+                                                               {
+                                                                       XWindowAttributes attrs;
+                                                                       if (XGetWindowAttributes(display,
+                                                                                       window.window, &attrs)) {
+                                                                               window.width = attrs.width;
+                                                                               window.height = attrs.height;
+                                                                       }
+                                                               }
+
+                                                               text_width = window.width - window.border_inner_margin * 2 - window.border_outer_margin * 2 - window.border_width * 2;
+                                                               text_height = window.height - window.border_inner_margin * 2 - window.border_outer_margin * 2 - window.border_width * 2;
+                                                               if (text_width > maximum_width
+                                                                               && maximum_width > 0) {
+                                                                       text_width = maximum_width;
+                                                               }
+                                                       }
+
+                                                       /* if position isn't what expected, set fixed pos
+                                                        * total_updates avoids setting fixed_pos when window
+                                                        * is set to weird locations when started */
+                                                       /* // this is broken
+                                                       if (total_updates >= 2 && !fixed_pos
+                                                                       && (window.x != ev.xconfigure.x
+                                                                       || window.y != ev.xconfigure.y)
+                                                                       && (ev.xconfigure.x != 0
+                                                                       || ev.xconfigure.y != 0)) {
+                                                               fixed_pos = 1;
+                                                       } */
+                                               }
+                                               break;
+
+                                       case ButtonPress:
+                                               if (own_window) {
+                                                       /* if an ordinary window with decorations */
+                                                       if ((window.type == TYPE_NORMAL &&
+                                                                               (!TEST_HINT(window.hints,
+                                                                                                       HINT_UNDECORATED))) ||
+                                                                       window.type == TYPE_DESKTOP) {
+                                                               /* allow conky to hold input focus. */
+                                                               break;
+                                                       } else {
+                                                               /* forward the click to the desktop window */
+                                                               XUngrabPointer(display, ev.xbutton.time);
+                                                               ev.xbutton.window = window.desktop;
+                                                               ev.xbutton.x = ev.xbutton.x_root;
+                                                               ev.xbutton.y = ev.xbutton.y_root;
+                                                               XSendEvent(display, ev.xbutton.window, False,
+                                                                       ButtonPressMask, &ev);
+                                                               XSetInputFocus(display, ev.xbutton.window,
+                                                                       RevertToParent, ev.xbutton.time);
+                                                       }
+                                               }
+                                               break;
+
+                                       case ButtonRelease:
+                                               if (own_window) {
+                                                       /* if an ordinary window with decorations */
+                                                       if ((window.type == TYPE_NORMAL)
+                                                                       && (!TEST_HINT(window.hints,
+                                                                       HINT_UNDECORATED))) {
+                                                               /* allow conky to hold input focus. */
+                                                               break;
+                                                       } else {
+                                                               /* forward the release to the desktop window */
+                                                               ev.xbutton.window = window.desktop;
+                                                               ev.xbutton.x = ev.xbutton.x_root;
+                                                               ev.xbutton.y = ev.xbutton.y_root;
+                                                               XSendEvent(display, ev.xbutton.window, False,
+                                                                       ButtonReleaseMask, &ev);
+                                                       }
+                                               }
+                                               break;
+
+#endif
+
+                                       default:
+#ifdef HAVE_XDAMAGE
+                                               if (ev.type == x11_stuff.event_base + XDamageNotify) {
+                                                       XDamageNotifyEvent *dev = (XDamageNotifyEvent *) &ev;
+
+                                                       XFixesSetRegion(display, x11_stuff.part, &dev->area, 1);
+                                                       XFixesUnionRegion(display, x11_stuff.region2, x11_stuff.region2, x11_stuff.part);
+                                               }
+#endif /* HAVE_XDAMAGE */
+                                               break;
+                               }
+                       }
+
+#ifdef HAVE_XDAMAGE
+                       XDamageSubtract(display, x11_stuff.damage, x11_stuff.region2, None);
+                       XFixesSetRegion(display, x11_stuff.region2, 0, 0);
+#endif /* HAVE_XDAMAGE */
+
+                       /* XDBE doesn't seem to provide a way to clear the back buffer
+                        * without interfering with the front buffer, other than passing
+                        * XdbeBackground to XdbeSwapBuffers. That means that if we're
+                        * using XDBE, we need to redraw the text even if it wasn't part of
+                        * the exposed area. OTOH, if we're not going to call draw_stuff at
+                        * all, then no swap happens and we can safely do nothing. */
+
+                       if (!XEmptyRegion(x11_stuff.region)) {
+#ifdef HAVE_XDBE
+                               if (use_xdbe) {
+                                       XRectangle r;
+
+                                       r.x = text_start_x - window.border_inner_margin - window.border_outer_margin - window.border_width;
+                                       r.y = text_start_y - window.border_inner_margin - window.border_outer_margin - window.border_width;
+                                       r.width = text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2;
+                                       r.height = text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2;
+                                       XUnionRectWithRegion(&r, x11_stuff.region, x11_stuff.region);
+                               }
+#endif
+                               XSetRegion(display, window.gc, x11_stuff.region);
+#ifdef XFT
+                               if (use_xft) {
+                                       XftDrawSetClip(window.xftdraw, x11_stuff.region);
+                               }
+#endif
+                               draw_stuff();
+                               XDestroyRegion(x11_stuff.region);
+                               x11_stuff.region = XCreateRegion();
+                       }
+               } else {
+#endif /* X11 */
+                       t = (next_update_time - get_time()) * 1000000;
+                       if(t > 0) usleep((useconds_t)t);
+                       update_text();
+                       draw_stuff();
+#ifdef NCURSES
+                       if(output_methods & TO_NCURSES) {
+                               refresh();
+                               clear();
+                       }
+#endif
+#ifdef X11
+               }
+#endif /* X11 */
+
+#ifdef SIGNAL_BLOCKING
+               /* unblock signals of interest and let handler fly */
+               if (sigprocmask(SIG_SETMASK, &oldmask, NULL) < 0) {
+                       CRIT_ERR(NULL, NULL, "unable to sigprocmask()");
+               }
+#endif
+
+               switch (g_signal_pending) {
+                       case SIGHUP:
+                       case SIGUSR1:
+                               NORM_ERR("received SIGHUP or SIGUSR1. reloading the config file.");
+                               reload_config();
+                               break;
+                       case SIGINT:
+                       case SIGTERM:
+                               NORM_ERR("received SIGINT or SIGTERM to terminate. bye!");
+                               terminate = 1;
+#ifdef X11
+                               if (output_methods & TO_X) {
+                                       XDestroyRegion(x11_stuff.region);
+                                       x11_stuff.region = NULL;
+#ifdef HAVE_XDAMAGE
+                                       XDamageDestroy(display, x11_stuff.damage);
+                                       XFixesDestroyRegion(display, x11_stuff.region2);
+                                       XFixesDestroyRegion(display, x11_stuff.part);
+#endif /* HAVE_XDAMAGE */
+                                       if (disp) {
+                                               free(disp);
+                                       }
+                               }
+#endif /* X11 */
+                               if(overwrite_file) {
+                                       free(overwrite_file);
+                                       overwrite_file = 0;
+                               }
+                               if(append_file) {
+                                       free(append_file);
+                                       append_file = 0;
+                               }
+                               break;
+                       default:
+                               /* Reaching here means someone set a signal
+                                * (SIGXXXX, signal_handler), but didn't write any code
+                                * to deal with it.
+                                * If you don't want to handle a signal, don't set a handler on
+                                * it in the first place. */
+                               if (g_signal_pending) {
+                                       NORM_ERR("ignoring signal (%d)", g_signal_pending);
+                               }
+                               break;
+               }
+#ifdef HAVE_SYS_INOTIFY_H
+               if (inotify_fd != -1 && inotify_config_wd == -1 && current_config != 0) {
+                       inotify_config_wd = inotify_add_watch(inotify_fd,
+                                       current_config,
+                                       IN_MODIFY);
+               }
+               if (inotify_fd != -1 && inotify_config_wd != -1 && current_config != 0) {
+                       int len = 0, idx = 0;
+                       fd_set descriptors;
+                       struct timeval time_to_wait;
+
+                       FD_ZERO(&descriptors);
+                       FD_SET(inotify_fd, &descriptors);
+
+                       time_to_wait.tv_sec = time_to_wait.tv_usec = 0;
+
+                       select(inotify_fd + 1, &descriptors, NULL, NULL, &time_to_wait);
+                       if (FD_ISSET(inotify_fd, &descriptors)) {
+                               /* process inotify events */
+                               len = read(inotify_fd, inotify_buff, INOTIFY_BUF_LEN);
+                               while (len > 0 && idx < len) {
+                                       struct inotify_event *ev = (struct inotify_event *) &inotify_buff[idx];
+                                       if (ev->wd == inotify_config_wd && (ev->mask & IN_MODIFY || ev->mask & IN_IGNORED)) {
+                                               /* current_config should be reloaded */
+                                               NORM_ERR("'%s' modified, reloading...", current_config);
+                                               reload_config();
+                                               if (ev->mask & IN_IGNORED) {
+                                                       /* for some reason we get IN_IGNORED here
+                                                        * sometimes, so we need to re-add the watch */
+                                                       inotify_config_wd = inotify_add_watch(inotify_fd,
+                                                                       current_config,
+                                                                       IN_MODIFY);
+                                               }
+                                       }
+#ifdef HAVE_LUA
+                                       else {
+                                               llua_inotify_query(ev->wd, ev->mask);
+                                       }
+#endif /* HAVE_LUA */
+                                       idx += INOTIFY_EVENT_SIZE + ev->len;
+                               }
+                       }
+               }
+#endif /* HAVE_SYS_INOTIFY_H */
+
+#ifdef HAVE_LUA
+       llua_update_info(&info, update_interval);
+#endif /* HAVE_LUA */
+               g_signal_pending = 0;
+       }
+       clean_up(NULL, NULL);
+
+#ifdef HAVE_SYS_INOTIFY_H
+       if (inotify_fd != -1) {
+               inotify_rm_watch(inotify_fd, inotify_config_wd);
+               close(inotify_fd);
+               inotify_fd = inotify_config_wd = 0;
+       }
+#endif /* HAVE_SYS_INOTIFY_H */
+}
+
+#ifdef X11
+static void load_config_file_x11(const char *);
+#endif /* X11 */
+void initialisation(int argc, char** argv);
+
+       /* reload the config file */
+static void reload_config(void)
+{
+       char *current_config_copy = strdup(current_config);
+       clean_up(NULL, NULL);
+       current_config = current_config_copy;
+       initialisation(argc_copy, argv_copy);
+}
+
+void clean_up(void *memtofree1, void* memtofree2)
+{
+       int i;
+
+#ifdef NCURSES
+       if(output_methods & TO_NCURSES) {
+               endwin();
+       }
+#endif
+       conftree_empty(currentconffile);
+       currentconffile = NULL;
+       if(memtofree1) {
+               free(memtofree1);
+       }
+       if(memtofree2) {
+               free(memtofree2);
+       }
+       timed_thread_destroy_registered_threads();
+
+       if (info.cpu_usage) {
+               free(info.cpu_usage);
+               info.cpu_usage = NULL;
+       }
+#ifdef X11
+       if (x_initialised == YES) {
+               XClearArea(display, window.window, text_start_x - window.border_inner_margin - window.border_outer_margin - window.border_width,
+                       text_start_y - window.border_inner_margin - window.border_outer_margin - window.border_width,
+                       text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2,
+                       text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2, 0);
+               destroy_window();
+               free_fonts();
+               if(x11_stuff.region) {
+                       XDestroyRegion(x11_stuff.region);
+                       x11_stuff.region = NULL;
+               }
+               XCloseDisplay(display);
+               display = NULL;
+               if(info.x11.desktop.all_names) {
+                       free(info.x11.desktop.all_names);
+                       info.x11.desktop.all_names = NULL;
+               }
+               if (info.x11.desktop.name) {
+                       free(info.x11.desktop.name);
+                       info.x11.desktop.name = NULL;
+               }
+               x_initialised = NO;
+       }else{
+               free(fonts);    //in set_default_configurations a font is set but not loaded
+               font_count = -1;
+       }
+
+#endif /* X11 */
+
+       for (i = 0; i < MAX_TEMPLATES; i++) {
+               if (template[i]) {
+                       free(template[i]);
+                       template[i] = NULL;
+               }
+       }
+
+       free_text_objects(&global_root_object, 0);
+       if (tmpstring1) {
+               free(tmpstring1);
+               tmpstring1 = 0;
+       }
+       if (tmpstring2) {
+               free(tmpstring2);
+               tmpstring2 = 0;
+       }
+       if (text_buffer) {
+               free(text_buffer);
+               text_buffer = 0;
+       }
+
+       if (global_text) {
+               free(global_text);
+               global_text = 0;
+       }
+
+       free(current_config);
+       current_config = 0;
+
+#ifdef TCP_PORT_MONITOR
+       tcp_portmon_clear();
+#endif
+#ifdef HAVE_CURL
+       ccurl_free_info();
+#endif
+#ifdef RSS
+       rss_free_info();
+#endif
+#ifdef WEATHER
+       weather_free_info();
+#endif
+#ifdef HAVE_LUA
+       llua_shutdown_hook();
+       llua_close();
+#endif /* HAVE_LUA */
+#ifdef IMLIB2
+       cimlib_deinit();
+#endif /* IMLIB2 */
+#ifdef XOAP
+       xmlCleanupParser();
+#endif /* XOAP */
+
+       if (specials) {
+               for (i = 0; i < special_count; i++) {
+                       if (specials[i].type == GRAPH) {
+                               free(specials[i].graph);
+                       }
+               }
+               free(specials);
+               specials = NULL;
+       }
+
+       clear_net_stats();
+       clear_diskio_stats();
+       if(global_cpu != NULL) {
+               free(global_cpu);
+               global_cpu = NULL;
+       }
+}
+
+static int string_to_bool(const char *s)
+{
+       if (!s) {
+               // Assumes an option without a true/false means true
+               return 1;
+       } else if (strcasecmp(s, "yes") == EQUAL) {
+               return 1;
+       } else if (strcasecmp(s, "true") == EQUAL) {
+               return 1;
+       } else if (strcasecmp(s, "1") == EQUAL) {
+               return 1;
+       }
+       return 0;
+}
+
+#ifdef X11
+static enum alignment string_to_alignment(const char *s)
+{
+       if (strcasecmp(s, "top_left") == EQUAL) {
+               return TOP_LEFT;
+       } else if (strcasecmp(s, "top_right") == EQUAL) {
+               return TOP_RIGHT;
+       } else if (strcasecmp(s, "top_middle") == EQUAL) {
+               return TOP_MIDDLE;
+       } else if (strcasecmp(s, "bottom_left") == EQUAL) {
+               return BOTTOM_LEFT;
+       } else if (strcasecmp(s, "bottom_right") == EQUAL) {
+               return BOTTOM_RIGHT;
+       } else if (strcasecmp(s, "bottom_middle") == EQUAL) {
+               return BOTTOM_MIDDLE;
+       } else if (strcasecmp(s, "middle_left") == EQUAL) {
+               return MIDDLE_LEFT;
+       } else if (strcasecmp(s, "middle_right") == EQUAL) {
+               return MIDDLE_RIGHT;
+       } else if (strcasecmp(s, "tl") == EQUAL) {
+               return TOP_LEFT;
+       } else if (strcasecmp(s, "tr") == EQUAL) {
+               return TOP_RIGHT;
+       } else if (strcasecmp(s, "tm") == EQUAL) {
+               return TOP_MIDDLE;
+       } else if (strcasecmp(s, "bl") == EQUAL) {
+               return BOTTOM_LEFT;
+       } else if (strcasecmp(s, "br") == EQUAL) {
+               return BOTTOM_RIGHT;
+       } else if (strcasecmp(s, "bm") == EQUAL) {
+               return BOTTOM_MIDDLE;
+       } else if (strcasecmp(s, "ml") == EQUAL) {
+               return MIDDLE_LEFT;
+       } else if (strcasecmp(s, "mr") == EQUAL) {
+               return MIDDLE_RIGHT;
+       } else if (strcasecmp(s, "none") == EQUAL) {
+               return NONE;
+       }
+       return TOP_LEFT;
+}
+#endif /* X11 */
+
+#ifdef X11
+static void set_default_configurations_for_x(void)
+{
+       default_fg_color = WhitePixel(display, screen);
+       default_bg_color = BlackPixel(display, screen);
+       default_out_color = BlackPixel(display, screen);
+       color0 = default_fg_color;
+       color1 = default_fg_color;
+       color2 = default_fg_color;
+       color3 = default_fg_color;
+       color4 = default_fg_color;
+       color5 = default_fg_color;
+       color6 = default_fg_color;
+       color7 = default_fg_color;
+       color8 = default_fg_color;
+       color9 = default_fg_color;
+       current_text_color = default_fg_color;
+}
+#endif /* X11 */
+
+static void set_default_configurations(void)
+{
+       int i;
+#ifdef MPD
+       char *mpd_env_host;
+       char *mpd_env_port;
+#endif
+       update_uname();
+       fork_to_background = 0;
+       total_run_times = 0;
+       info.cpu_avg_samples = 2;
+       info.net_avg_samples = 2;
+       info.diskio_avg_samples = 2;
+       info.memmax = 0;
+       top_cpu = 0;
+       cpu_separate = 0;
+       short_units = 0;
+       format_human_readable = 1;
+       top_mem = 0;
+       top_time = 0;
+#ifdef IOSTATS
+       top_io = 0;
+#endif
+#ifdef MPD
+       mpd_env_host = getenv("MPD_HOST");
+       mpd_env_port = getenv("MPD_PORT");
+
+       if (!mpd_env_host || !strlen(mpd_env_host)) {
+               mpd_set_host("localhost");
+       } else {
+               /* MPD_HOST environment variable is set */
+               char *mpd_hostpart = strchr(mpd_env_host, '@');
+               if (!mpd_hostpart) {
+                       mpd_set_host(mpd_env_host);
+               } else {
+                       /* MPD_HOST contains a password */
+                       char mpd_password[mpd_hostpart - mpd_env_host + 1];
+                       snprintf(mpd_password, mpd_hostpart - mpd_env_host + 1, "%s", mpd_env_host);
+
+                       if (!strlen(mpd_hostpart + 1)) {
+                               mpd_set_host("localhost");
+                       } else {
+                               mpd_set_host(mpd_hostpart + 1);
+                       }
+
+                       mpd_set_password(mpd_password, 1);
+               }
+       }
+
+
+       if (!mpd_env_port || mpd_set_port(mpd_env_port)) {
+               /* failed to set port from environment variable */
+               mpd_set_port("6600");
+       }
+#endif
+#ifdef XMMS2
+       info.xmms2.artist = NULL;
+       info.xmms2.album = NULL;
+       info.xmms2.title = NULL;
+       info.xmms2.genre = NULL;
+       info.xmms2.comment = NULL;
+       info.xmms2.url = NULL;
+       info.xmms2.status = NULL;
+       info.xmms2.playlist = NULL;
+#endif
+       use_spacer = NO_SPACER;
+#ifdef X11
+       output_methods = TO_X;
+#else
+       output_methods = TO_STDOUT;
+#endif
+#ifdef X11
+       show_graph_scale = 0;
+       show_graph_range = 0;
+       draw_shades = 1;
+       draw_borders = 0;
+       draw_graph_borders = 1;
+       draw_outline = 0;
+       set_first_font("6x10");
+       gap_x = 5;
+       gap_y = 60;
+       minimum_width = 5;
+       minimum_height = 5;
+       maximum_width = 0;
+#ifdef OWN_WINDOW
+       own_window = 0;
+       window.type = TYPE_NORMAL;
+       window.hints = 0;
+       strcpy(window.class_name, PACKAGE_NAME);
+       sprintf(window.title, PACKAGE_NAME" (%s)", info.uname_s.nodename);
+#endif
+       stippled_borders = 0;
+       window.border_inner_margin = 3;
+       window.border_outer_margin = 1;
+       window.border_width = 1;
+       text_alignment = BOTTOM_LEFT;
+       info.x11.monitor.number = 1;
+       info.x11.monitor.current = 0;
+       info.x11.desktop.current = 1; 
+       info.x11.desktop.number = 1;
+       info.x11.desktop.nitems = 0;
+       info.x11.desktop.all_names = NULL; 
+       info.x11.desktop.name = NULL; 
+#endif /* X11 */
+
+       for (i = 0; i < MAX_TEMPLATES; i++) {
+               if (template[i])
+                       free(template[i]);
+               template[i] = strdup("");
+       }
+
+       free(current_mail_spool);
+       {
+               char buf[256];
+
+               variable_substitute(MAIL_FILE, buf, 256);
+               if (buf[0] != '\0') {
+                       current_mail_spool = strndup(buf, text_buffer_size);
+               }
+       }
+
+       no_buffers = 1;
+       set_update_interval(3);
+       update_interval_bat = NOBATTERY;
+       info.music_player_interval = 1.0;
+       stuff_in_uppercase = 0;
+       info.users.number = 1;
+
+#ifdef TCP_PORT_MONITOR
+       /* set default connection limit */
+       tcp_portmon_set_max_connections(0);
+#endif
+}
+
+/* returns 1 if you can overwrite or create the file at 'path' */
+static _Bool overwrite_works(const char *path)
+{
+       FILE *filepointer;
+
+       if (!(filepointer = fopen(path, "w")))
+               return 0;
+       fclose(filepointer);
+       return 1;
+}
+
+/* returns 1 if you can append or create the file at 'path' */
+static _Bool append_works(const char *path)
+{
+       FILE *filepointer;
+
+       if (!(filepointer = fopen(path, "a")))
+               return 0;
+       fclose(filepointer);
+       return 1;
+}
+
+#ifdef X11
+#ifdef DEBUG
+/* WARNING, this type not in Xlib spec */
+int x11_error_handler(Display *d, XErrorEvent *err)
+       __attribute__((noreturn));
+int x11_error_handler(Display *d, XErrorEvent *err)
+{
+       NORM_ERR("X Error: type %i Display %lx XID %li serial %lu error_code %i request_code %i minor_code %i other Display: %lx\n",
+                       err->type,
+                       (long unsigned)err->display,
+                       (long)err->resourceid,
+                       err->serial,
+                       err->error_code,
+                       err->request_code,
+                       err->minor_code,
+                       (long unsigned)d
+                       );
+       abort();
+}
+
+int x11_ioerror_handler(Display *d)
+       __attribute__((noreturn));
+int x11_ioerror_handler(Display *d)
+{
+       NORM_ERR("X Error: Display %lx\n",
+                       (long unsigned)d
+                       );
+       abort();
+}
+#endif /* DEBUG */
+
+static void X11_initialisation(void)
+{
+       if (x_initialised == YES) return;
+       output_methods |= TO_X;
+       init_X11(disp);
+       set_default_configurations_for_x();
+       x_initialised = YES;
+#ifdef DEBUG
+       _Xdebug = 1;
+       /* WARNING, this type not in Xlib spec */
+       XSetErrorHandler(&x11_error_handler);
+       XSetIOErrorHandler(&x11_ioerror_handler);
+#endif /* DEBUG */
+}
+
+static char **xargv = 0;
+static int xargc = 0;
+
+static void X11_create_window(void)
+{
+       if (output_methods & TO_X) {
+#ifdef OWN_WINDOW
+               init_window(own_window, text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2,
+                               text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2, set_transparent, background_colour,
+                               xargv, xargc);
+#else /* OWN_WINDOW */
+               init_window(0, text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2,
+                               text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2, set_transparent, 0,
+                               xargv, xargc);
+#endif /* OWN_WINDOW */
+
+               setup_fonts();
+               load_fonts();
+               update_text_area();     /* to position text/window on screen */
+
+#ifdef OWN_WINDOW
+               if (own_window && !fixed_pos) {
+                       XMoveWindow(display, window.window, window.x, window.y);
+               }
+               if (own_window) {
+                       set_transparent_background(window.window);
+               }
+#endif
+
+               create_gc();
+
+               draw_stuff();
+
+               x11_stuff.region = XCreateRegion();
+#ifdef HAVE_XDAMAGE
+               if (!XDamageQueryExtension(display, &x11_stuff.event_base, &x11_stuff.error_base)) {
+                       NORM_ERR("Xdamage extension unavailable");
+               }
+               x11_stuff.damage = XDamageCreate(display, window.window, XDamageReportNonEmpty);
+               x11_stuff.region2 = XFixesCreateRegionFromWindow(display, window.window, 0);
+               x11_stuff.part = XFixesCreateRegionFromWindow(display, window.window, 0);
+#endif /* HAVE_XDAMAGE */
+
+               selected_font = 0;
+               update_text_area();     /* to get initial size of the window */
+       }
+#ifdef HAVE_LUA
+       /* setup lua window globals */
+       llua_setup_window_table(text_start_x, text_start_y, text_width, text_height);
+#endif /* HAVE_LUA */
+}
+#endif /* X11 */
+
+#define CONF_ERR NORM_ERR("%s: %d: config file error", f, line)
+#define CONF_ERR2(a) NORM_ERR("%s: %d: config file error: %s", f, line, a)
+#define CONF2(a) if (strcasecmp(name, a) == 0)
+#define CONF(a) else CONF2(a)
+#define CONF3(a, b) else if (strcasecmp(name, a) == 0 \
+               || strcasecmp(name, b) == 0)
+#define CONF_CONTINUE 1
+#define CONF_BREAK 2
+#define CONF_BUFF_SIZE 512
+
+static FILE *open_config_file(const char *f)
+{
+#ifdef CONFIG_OUTPUT
+       if (!strcmp(f, "==builtin==")) {
+               return conf_cookie_open();
+       } else
+#endif /* CONFIG_OUTPUT */
+               return fopen(f, "r");
+}
+
+static int do_config_step(int *line, FILE *fp, char *buf, char **name, char **value)
+{
+       char *p, *p2;
+       (*line)++;
+       if (fgets(buf, CONF_BUFF_SIZE, fp) == NULL) {
+               return CONF_BREAK;
+       }
+       remove_comments(buf);
+
+       p = buf;
+
+       /* skip spaces */
+       while (*p && isspace((int) *p)) {
+               p++;
+       }
+       if (*p == '\0') {
+               return CONF_CONTINUE;   /* empty line */
+       }
+
+       *name = p;
+
+       /* skip name */
+       p2 = p;
+       while (*p2 && !isspace((int) *p2)) {
+               p2++;
+       }
+       if (*p2 != '\0') {
+               *p2 = '\0';     /* break at name's end */
+               p2++;
+       }
+
+       /* get value */
+       if (*p2) {
+               p = p2;
+               while (*p && isspace((int) *p)) {
+                       p++;
+               }
+
+               *value = p;
+
+               p2 = *value + strlen(*value);
+               while (isspace((int) *(p2 - 1))) {
+                       *--p2 = '\0';
+               }
+       } else {
+               *value = 0;
+       }
+       return 0;
+}
+
+char load_config_file(const char *f)
+{
+       int line = 0;
+       FILE *fp;
+
+       fp = open_config_file(f);
+       if (!fp) {
+               return FALSE;
+       }
+       DBGP("reading contents from config file '%s'", f);
+
+       while (!feof(fp)) {
+               char buff[CONF_BUFF_SIZE], *name, *value;
+               int ret = do_config_step(&line, fp, buff, &name, &value);
+               if (ret == CONF_BREAK) {
+                       break;
+               } else if (ret == CONF_CONTINUE) {
+                       continue;
+               }
+
+#ifdef X11
+               CONF2("out_to_x") {
+                       /* don't listen if X is already initialised or
+                        * if we already know we don't want it */
+                       if(x_initialised != YES) {
+                               if (string_to_bool(value)) {
+                                       output_methods &= TO_X;
+                               } else {
+                                       output_methods &= ~TO_X;
+                                       x_initialised = NEVER;
+                               }
+                       }
+               }
+               CONF("display") {
+                       if (!value || x_initialised == YES) {
+                               CONF_ERR;
+                       } else {
+                               if (disp)
+                                       free(disp);
+                               disp = strdup(value);
+                       }
+               }
+               CONF("alignment") {
+#ifdef OWN_WINDOW
+                       if (window.type == TYPE_DOCK)
+                               ;
+                       else
+#endif /*OWN_WINDOW */
+                       if (value) {
+                               int a = string_to_alignment(value);
+
+                               if (a <= 0) {
+                                       CONF_ERR;
+                               } else {
+                                       text_alignment = a;
+                               }
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("background") {
+                       fork_to_background = string_to_bool(value);
+               }
+#else
+               CONF2("background") {
+                       fork_to_background = string_to_bool(value);
+               }
+#endif /* X11 */
+#ifdef X11
+               CONF("show_graph_scale") {
+                       show_graph_scale = string_to_bool(value);
+               }
+               CONF("show_graph_range") {
+                       show_graph_range = string_to_bool(value);
+               }
+               CONF("border_inner_margin") {
+                       if (value) {
+                               window.border_inner_margin = strtol(value, 0, 0);
+                               if (window.border_inner_margin < 0) window.border_inner_margin = 0;
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("border_outer_margin") {
+                       if (value) {
+                               window.border_outer_margin = strtol(value, 0, 0);
+                               if (window.border_outer_margin < 0) window.border_outer_margin = 0;
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("border_width") {
+                       if (value) {
+                               window.border_width = strtol(value, 0, 0);
+                               if (window.border_width < 0) window.border_width = 0;
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+#endif /* X11 */
+#define TEMPLATE_CONF(n) \
+               CONF("template"#n) { \
+                       if (value) { \
+                               free(template[n]); \
+                               template[n] = strdup(value); \
+                       } else { \
+                               CONF_ERR; \
+                       } \
+               }
+               TEMPLATE_CONF(0)
+               TEMPLATE_CONF(1)
+               TEMPLATE_CONF(2)
+               TEMPLATE_CONF(3)
+               TEMPLATE_CONF(4)
+               TEMPLATE_CONF(5)
+               TEMPLATE_CONF(6)
+               TEMPLATE_CONF(7)
+               TEMPLATE_CONF(8)
+               TEMPLATE_CONF(9)
+               CONF("imap") {
+                       if (value) {
+                               info.mail = parse_mail_args(IMAP_TYPE, value);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("pop3") {
+                       if (value) {
+                               info.mail = parse_mail_args(POP3_TYPE, value);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("default_bar_size") {
+                       char err = 0;
+                       if (value) {
+                               if (sscanf(value, "%d %d", &default_bar_width, &default_bar_height) != 2) {
+                                       err = 1;
+                               }
+                       } else {
+                               err = 1;
+                       }
+                       if (err) {
+                               CONF_ERR2("default_bar_size takes 2 integer arguments (ie. 'default_bar_size 0 6')")
+                       }
+               }
+#ifdef X11
+               CONF("default_graph_size") {
+                       char err = 0;
+                       if (value) {
+                               if (sscanf(value, "%d %d", &default_graph_width, &default_graph_height) != 2) {
+                                       err = 1;
+                               }
+                       } else {
+                               err = 1;
+                       }
+                       if (err) {
+                               CONF_ERR2("default_graph_size takes 2 integer arguments (ie. 'default_graph_size 0 6')")
+                       }
+               }
+               CONF("default_gauge_size") {
+                       char err = 0;
+                       if (value) {
+                               if (sscanf(value, "%d %d", &default_gauge_width, &default_gauge_height) != 2) {
+                                       err = 1;
+                               }
+                       } else {
+                               err = 1;
+                       }
+                       if (err) {
+                               CONF_ERR2("default_gauge_size takes 2 integer arguments (ie. 'default_gauge_size 0 6')")
+                       }
+               }
+#endif
+#ifdef MPD
+               CONF("mpd_host") {
+                       if (value) {
+                               mpd_set_host(value);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("mpd_port") {
+                       if (value && mpd_set_port(value)) {
+                               CONF_ERR;
+                       }
+               }
+               CONF("mpd_password") {
+                       if (value) {
+                               mpd_set_password(value, 0);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+#endif
+               CONF("music_player_interval") {
+                       if (value) {
+                               info.music_player_interval = strtod(value, 0);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+#ifdef __OpenBSD__
+               CONF("sensor_device") {
+                       if (value) {
+                               sensor_device = strtol(value, 0, 0);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+#endif
+               CONF("cpu_avg_samples") {
+                       if (value) {
+                               cpu_avg_samples = strtol(value, 0, 0);
+                               if (cpu_avg_samples < 1 || cpu_avg_samples > 14) {
+                                       CONF_ERR;
+                               } else {
+                                       info.cpu_avg_samples = cpu_avg_samples;
+                               }
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("net_avg_samples") {
+                       if (value) {
+                               net_avg_samples = strtol(value, 0, 0);
+                               if (net_avg_samples < 1 || net_avg_samples > 14) {
+                                       CONF_ERR;
+                               } else {
+                                       info.net_avg_samples = net_avg_samples;
+                               }
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("diskio_avg_samples") {
+                       if (value) {
+                               diskio_avg_samples = strtol(value, 0, 0);
+                               if (diskio_avg_samples < 1 || diskio_avg_samples > 14) {
+                                       CONF_ERR;
+                               } else {
+                                       info.diskio_avg_samples = diskio_avg_samples;
+                               }
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+
+#ifdef HAVE_XDBE
+               CONF("double_buffer") {
+                       use_xdbe = string_to_bool(value);
+               }
+#endif
+#ifdef X11
+               CONF("override_utf8_locale") {
+                       utf8_mode = string_to_bool(value);
+               }
+               CONF("draw_borders") {
+                       draw_borders = string_to_bool(value);
+               }
+               CONF("draw_graph_borders") {
+                       draw_graph_borders = string_to_bool(value);
+               }
+               CONF("draw_shades") {
+                       draw_shades = string_to_bool(value);
+               }
+               CONF("draw_outline") {
+                       draw_outline = string_to_bool(value);
+               }
+#endif /* X11 */
+               CONF("out_to_console") {
+                       if(string_to_bool(value)) {
+                               output_methods |= TO_STDOUT;
+                       } else {
+                               output_methods &= ~TO_STDOUT;
+                       }
+               }
+               CONF("extra_newline") {
+                       extra_newline = string_to_bool(value);
+               }
+               CONF("out_to_stderr") {
+                       if(string_to_bool(value))
+                               output_methods |= TO_STDERR;
+               }
+#ifdef NCURSES
+               CONF("out_to_ncurses") {
+                       if(string_to_bool(value)) {
+                               initscr();
+                               start_color();
+                               output_methods |= TO_NCURSES;
+                       }
+               }
+#endif
+               CONF("overwrite_file") {
+                       if(overwrite_file) {
+                               free(overwrite_file);
+                               overwrite_file = 0;
+                       }
+                       if(overwrite_works(value)) {
+                               overwrite_file = strdup(value);
+                               output_methods |= OVERWRITE_FILE;
+                       } else
+                               NORM_ERR("overwrite_file won't be able to create/overwrite '%s'", value);
+               }
+               CONF("append_file") {
+                       if(append_file) {
+                               free(append_file);
+                               append_file = 0;
+                       }
+                       if(append_works(value)) {
+                               append_file = strdup(value);
+                               output_methods |= APPEND_FILE;
+                       } else
+                               NORM_ERR("append_file won't be able to create/append '%s'", value);
+               }
+               CONF("use_spacer") {
+                       if (value) {
+                               if (strcasecmp(value, "left") == EQUAL) {
+                                       use_spacer = LEFT_SPACER;
+                               } else if (strcasecmp(value, "right") == EQUAL) {
+                                       use_spacer = RIGHT_SPACER;
+                               } else if (strcasecmp(value, "none") == EQUAL) {
+                                       use_spacer = NO_SPACER;
+                               } else {
+                                       use_spacer = string_to_bool(value);
+                                       NORM_ERR("use_spacer should have an argument of left, right, or"
+                                               " none.  '%s' seems to be some form of '%s', so"
+                                               " defaulting to %s.", value,
+                                               use_spacer ? "true" : "false",
+                                               use_spacer ? "right" : "none");
+                                       if (use_spacer) {
+                                               use_spacer = RIGHT_SPACER;
+                                       } else {
+                                               use_spacer = NO_SPACER;
+                                       }
+                               }
+                       } else {
+                               NORM_ERR("use_spacer should have an argument. Defaulting to right.");
+                               use_spacer = RIGHT_SPACER;
+                       }
+               }
+#ifdef X11
+#ifdef XFT
+               CONF("use_xft") {
+                       use_xft = string_to_bool(value);
+               }
+               CONF("font") {
+                       if (value) {
+                               set_first_font(value);
+                       }
+               }
+               CONF("xftalpha") {
+                       if (value && font_count >= 0) {
+                               fonts[0].font_alpha = atof(value) * 65535.0;
+                       }
+               }
+               CONF("xftfont") {
+                       if (use_xft) {
+#else
+               CONF("use_xft") {
+                       if (string_to_bool(value)) {
+                               NORM_ERR("Xft not enabled at compile time");
+                       }
+               }
+               CONF("xftfont") {
+                       /* xftfont silently ignored when no Xft */
+               }
+               CONF("xftalpha") {
+                       /* xftalpha is silently ignored when no Xft */
+               }
+               CONF("font") {
+#endif
+                       if (value) {
+                               set_first_font(value);
+                       }
+#ifdef XFT
+                       }
+#endif
+               }
+               CONF("gap_x") {
+                       if (value) {
+                               gap_x = atoi(value);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("gap_y") {
+                       if (value) {
+                               gap_y = atoi(value);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+#endif /* X11 */
+               CONF("mail_spool") {
+                       if (value) {
+                               char buffer[256];
+
+                               variable_substitute(value, buffer, 256);
+
+                               if (buffer[0] != '\0') {
+                                       if (current_mail_spool) {
+                                               free(current_mail_spool);
+                                       }
+                                       current_mail_spool = strndup(buffer, text_buffer_size);
+                               }
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+#ifdef X11
+               CONF("minimum_size") {
+                       if (value) {
+                               if (sscanf(value, "%d %d", &minimum_width, &minimum_height)
+                                               != 2) {
+                                       if (sscanf(value, "%d", &minimum_width) != 1) {
+                                               CONF_ERR;
+                                       }
+                               }
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("maximum_width") {
+                       if (value) {
+                               if (sscanf(value, "%d", &maximum_width) != 1) {
+                                       CONF_ERR;
+                               }
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+#endif /* X11 */
+               CONF("no_buffers") {
+                       no_buffers = string_to_bool(value);
+               }
+               CONF("top_name_width") {
+                       if (value) {
+                               if (sscanf(value, "%u", &top_name_width) != 1) {
+                                       CONF_ERR;
+                               }
+                       } else {
+                               CONF_ERR;
+                       }
+                       if (top_name_width >= max_user_text) {
+                               top_name_width = max_user_text - 1;
+                       }
+               }
+               CONF("top_cpu_separate") {
+                       cpu_separate = string_to_bool(value);
+               }
+               CONF("short_units") {
+                       short_units = string_to_bool(value);
+               }
+               CONF("format_human_readable") {
+                       format_human_readable = string_to_bool(value);
+               }
+               CONF("pad_percents") {
+                       pad_percents = atoi(value);
+               }
+#ifdef X11
+#ifdef OWN_WINDOW
+               CONF("own_window") {
+                       if (value) {
+                               own_window = string_to_bool(value);
+                       }
+               }
+               CONF("own_window_class") {
+                       if (value) {
+                               memset(window.class_name, 0, sizeof(window.class_name));
+                               strncpy(window.class_name, value,
+                                               sizeof(window.class_name) - 1);
+                       }
+               }
+               CONF("own_window_title") {
+                       if (value) {
+                               memset(window.title, 0, sizeof(window.title));
+                               strncpy(window.title, value, sizeof(window.title) - 1);
+                       }
+               }
+               CONF("own_window_transparent") {
+                       if (value) {
+                               set_transparent = string_to_bool(value);
+                       }
+               }
+               CONF("own_window_hints") {
+                       if (value) {
+                               char *p_hint, *p_save;
+                               char delim[] = ", ";
+
+                               /* tokenize the value into individual hints */
+                               if ((p_hint = strtok_r(value, delim, &p_save)) != NULL) {
+                                       do {
+                                               /* fprintf(stderr, "hint [%s] parsed\n", p_hint); */
+                                               if (strncmp(p_hint, "undecorate", 10) == EQUAL) {
+                                                       SET_HINT(window.hints, HINT_UNDECORATED);
+                                               } else if (strncmp(p_hint, "below", 5) == EQUAL) {
+                                                       SET_HINT(window.hints, HINT_BELOW);
+                                               } else if (strncmp(p_hint, "above", 5) == EQUAL) {
+                                                       SET_HINT(window.hints, HINT_ABOVE);
+                                               } else if (strncmp(p_hint, "sticky", 6) == EQUAL) {
+                                                       SET_HINT(window.hints, HINT_STICKY);
+                                               } else if (strncmp(p_hint, "skip_taskbar", 12) == EQUAL) {
+                                                       SET_HINT(window.hints, HINT_SKIP_TASKBAR);
+                                               } else if (strncmp(p_hint, "skip_pager", 10) == EQUAL) {
+                                                       SET_HINT(window.hints, HINT_SKIP_PAGER);
+                                               } else {
+                                                       CONF_ERR;
+                                               }
+
+                                               p_hint = strtok_r(NULL, delim, &p_save);
+                                       } while (p_hint != NULL);
+                               }
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("own_window_type") {
+                       if (value) {
+                               if (strncmp(value, "normal", 6) == EQUAL) {
+                                       window.type = TYPE_NORMAL;
+                               } else if (strncmp(value, "desktop", 7) == EQUAL) {
+                                       window.type = TYPE_DESKTOP;
+                               } else if (strncmp(value, "dock", 4) == EQUAL) {
+                                       window.type = TYPE_DOCK;
+                                       text_alignment = TOP_LEFT;
+                               } else if (strncmp(value, "panel", 5) == EQUAL) {
+                                       window.type = TYPE_PANEL;
+                               } else if (strncmp(value, "override", 8) == EQUAL) {
+                                       window.type = TYPE_OVERRIDE;
+                               } else {
+                                       CONF_ERR;
+                               }
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+#endif
+               CONF("stippled_borders") {
+                       if (value) {
+                               stippled_borders = strtol(value, 0, 0);
+                       } else {
+                               stippled_borders = 4;
+                       }
+               }
+#ifdef IMLIB2
+               CONF("imlib_cache_size") {
+                       if (value) {
+                               cimlib_set_cache_size(atoi(value));
+                       }
+               }
+               CONF("imlib_cache_flush_interval") {
+                       if (value) {
+                               cimlib_set_cache_flush_interval(atoi(value));
+                       }
+               }
+#endif /* IMLIB2 */
+#endif /* X11 */
+               CONF("update_interval_on_battery") {
+                       if (value) {
+                               update_interval_bat = strtod(value, 0);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("update_interval") {
+                       if (value) {
+                               set_update_interval(strtod(value, 0));
+                       } else {
+                               CONF_ERR;
+                       }
+                       if (info.music_player_interval == 0) {
+                               // default to update_interval
+                               info.music_player_interval = update_interval;
+                       }
+               }
+               CONF("total_run_times") {
+                       if (value) {
+                               total_run_times = strtod(value, 0);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("uppercase") {
+                       stuff_in_uppercase = string_to_bool(value);
+               }
+               CONF("max_specials") {
+                       if (value) {
+                               max_specials = atoi(value);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("max_user_text") {
+                       if (value) {
+                               max_user_text = atoi(value);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("text_buffer_size") {
+                       if (value) {
+                               text_buffer_size = atoi(value);
+                               if (text_buffer_size < DEFAULT_TEXT_BUFFER_SIZE) {
+                                       NORM_ERR("text_buffer_size must be >=%i bytes", DEFAULT_TEXT_BUFFER_SIZE);
+                                       text_buffer_size = DEFAULT_TEXT_BUFFER_SIZE;
+                               }
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("text") {
+#ifdef X11
+                       if (output_methods & TO_X) {
+                               X11_initialisation();
+                       }
+#endif
 
-                                                               /* clear old stuff before screwing up
-                                                                * size and pos */
-                                                               clear_text(ctx, 1);
+                       if (global_text) {
+                               free(global_text);
+                               global_text = 0;
+                       }
 
-                                                               {
-                                                                       XWindowAttributes attrs;
-                                                                       if (XGetWindowAttributes(display,
-                                                                                       ctx->window.window, &attrs)) {
-                                                                               ctx->window.width = attrs.width;
-                                                                               ctx->window.height = attrs.height;
-                                                                       }
-                                                               }
+                       global_text = (char *) malloc(1);
+                       global_text[0] = '\0';
 
-                                                               ctx->text_width = ctx->window.width - ctx->window.border_inner_margin * 2 - ctx->window.border_outer_margin * 2 - ctx->window.border_width * 2;
-                                                               ctx->text_height = ctx->window.height - ctx->window.border_inner_margin * 2 - ctx->window.border_outer_margin * 2 - ctx->window.border_width * 2;
-                                                               if (ctx->text_width > ctx->maximum_width
-                                                                               && ctx->maximum_width > 0) {
-                                                                       ctx->text_width = ctx->maximum_width;
-                                                               }
-                                                       }
+                       while (!feof(fp)) {
+                               unsigned int l = strlen(global_text);
+                               unsigned int bl;
+                               char buf[CONF_BUFF_SIZE];
 
-                                                       /* if position isn't what expected, set fixed pos
-                                                        * total_updates avoids setting ctx->fixed_pos when ctx->window
-                                                        * is set to weird locations when started */
-                                                       /* // this is broken
-                                                       if (total_updates >= 2 && !ctx->fixed_pos
-                                                                       && (ctx->window.x != ev.xconfigure.x
-                                                                       || ctx->window.y != ev.xconfigure.y)
-                                                                       && (ev.xconfigure.x != 0
-                                                                       || ev.xconfigure.y != 0)) {
-                                                               ctx->fixed_pos = 1;
-                                                       } */
-                                               }
-                                               break;
+                               if (fgets(buf, CONF_BUFF_SIZE, fp) == NULL) {
+                                       break;
+                               }
 
-                                       case ButtonPress:
-                                               if (ctx->own_window) {
-                                                       /* if an ordinary ctx->window with decorations */
-                                                       if ((ctx->window.type == TYPE_NORMAL &&
-                                                                               (!TEST_HINT(ctx->window.hints,
-                                                                                                       HINT_UNDECORATED))) ||
-                                                                       ctx->window.type == TYPE_DESKTOP) {
-                                                               /* allow conky to hold input focus. */
-                                                               break;
-                                                       } else {
-                                                               /* forward the click to the desktop ctx->window */
-                                                               XUngrabPointer(display, ev.xbutton.time);
-                                                               ev.xbutton.window = ctx->window.desktop;
-                                                               ev.xbutton.x = ev.xbutton.x_root;
-                                                               ev.xbutton.y = ev.xbutton.y_root;
-                                                               XSendEvent(display, ev.xbutton.window, False,
-                                                                       ButtonPressMask, &ev);
-                                                               XSetInputFocus(display, ev.xbutton.window,
-                                                                       RevertToParent, ev.xbutton.time);
-                                                       }
-                                               }
-                                               break;
+                               /* Remove \\-\n. */
+                               bl = strlen(buf);
+                               if (bl >= 2 && buf[bl-2] == '\\' && buf[bl-1] == '\n') {
+                                       buf[bl-2] = '\0';
+                                       bl -= 2;
+                                       if (bl == 0) {
+                                               continue;
+                                       }
+                               }
 
-                                       case ButtonRelease:
-                                               if (ctx->own_window) {
-                                                       /* if an ordinary ctx->window with decorations */
-                                                       if ((ctx->window.type == TYPE_NORMAL)
-                                                                       && (!TEST_HINT(ctx->window.hints,
-                                                                       HINT_UNDECORATED))) {
-                                                               /* allow conky to hold input focus. */
-                                                               break;
-                                                       } else {
-                                                               /* forward the release to the desktop ctx->window */
-                                                               ev.xbutton.window = ctx->window.desktop;
-                                                               ev.xbutton.x = ev.xbutton.x_root;
-                                                               ev.xbutton.y = ev.xbutton.y_root;
-                                                               XSendEvent(display, ev.xbutton.window, False,
-                                                                       ButtonReleaseMask, &ev);
-                                                       }
-                                               }
-                                               break;
+                               /* Check for continuation of \\-\n. */
+                               if (l > 0 && buf[0] == '\n' && global_text[l-1] == '\\') {
+                                       global_text[l-1] = '\0';
+                                       continue;
+                               }
+
+                               global_text = (char *) realloc(global_text, l + bl + 1);
+                               strcat(global_text, buf);
 
+                               if (strlen(global_text) > max_user_text) {
+                                       break;
+                               }
+                       }
+                       fclose(fp);
+                       if (strlen(global_text) < 1) {
+                               CRIT_ERR(NULL, NULL, "no text supplied in configuration; exiting");
+                       }
+                       global_text_lines = line + 1;
+                       return TRUE;
+               }
+#ifdef TCP_PORT_MONITOR
+               CONF("max_port_monitor_connections") {
+                       int max;
+                       if (!value || (sscanf(value, "%d", &max) != 1)) {
+                               /* an error. use default, warn and continue. */
+                               tcp_portmon_set_max_connections(0);
+                               CONF_ERR;
+                       } else if (tcp_portmon_set_max_connections(max)) {
+                               /* max is < 0, default has been set*/
+                               CONF_ERR;
+                       }
+               }
 #endif
+               CONF("if_up_strictness") {
+                       if (!value) {
+                               NORM_ERR("incorrect if_up_strictness value, defaulting to 'up'");
+                               ifup_strictness = IFUP_UP;
+                       } else if (strcasecmp(value, "up") == EQUAL) {
+                               ifup_strictness = IFUP_UP;
+                       } else if (strcasecmp(value, "link") == EQUAL) {
+                               ifup_strictness = IFUP_LINK;
+                       } else if (strcasecmp(value, "address") == EQUAL) {
+                               ifup_strictness = IFUP_ADDR;
+                       } else {
+                               NORM_ERR("incorrect if_up_strictness value, defaulting to 'up'");
+                               ifup_strictness = IFUP_UP;
+                       }
+               }
 
-                                       default:
-#ifdef HAVE_XDAMAGE
-                                               if (ev.type == ctx->window.event_base + XDamageNotify) {
-                                                       XDamageNotifyEvent *dev = (XDamageNotifyEvent *) &ev;
+               CONF("temperature_unit") {
+                       if (!value) {
+                               NORM_ERR("config option 'temperature_unit' needs an argument, either 'celsius' or 'fahrenheit'");
+                       } else if (set_temp_output_unit(value)) {
+                               NORM_ERR("temperature_unit: incorrect argument");
+                       }
+               }
 
-                                                       XFixesSetRegion(display, ctx->window.part, &dev->area, 1);
-                                                       XFixesUnionRegion(display, ctx->window.region2, ctx->window.region2, ctx->window.part);
-                                               }
-#endif /* HAVE_XDAMAGE */
-                                               break;
+#ifdef HAVE_LUA
+               CONF("lua_load") {
+                       if (value) {
+                               char *ptr = strtok(value, " ");
+                               while (ptr) {
+                                       llua_load(ptr);
+                                       ptr = strtok(NULL, " ");
                                }
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+#ifdef X11
+               CONF("lua_draw_hook_pre") {
+                       if (value) {
+                               llua_set_draw_pre_hook(value);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("lua_draw_hook_post") {
+                       if (value) {
+                               llua_set_draw_post_hook(value);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("lua_startup_hook") {
+                       if (value) {
+                               llua_set_startup_hook(value);
+                       } else {
+                               CONF_ERR;
+                       }
+               }
+               CONF("lua_shutdown_hook") {
+                       if (value) {
+                               llua_set_shutdown_hook(value);
+                       } else {
+                               CONF_ERR;
                        }
+               }
+#endif /* X11 */
+#endif /* HAVE_LUA */
 
-#ifdef HAVE_XDAMAGE
-                       XDamageSubtract(display, ctx->window.damage, ctx->window.region2, None);
-                       XFixesSetRegion(display, ctx->window.region2, 0, 0);
-#endif /* HAVE_XDAMAGE */
+               CONF("color0"){}
+               CONF("color1"){}
+               CONF("color2"){}
+               CONF("color3"){}
+               CONF("color4"){}
+               CONF("color5"){}
+               CONF("color6"){}
+               CONF("color7"){}
+               CONF("color8"){}
+               CONF("color9"){}
+               CONF("default_color"){}
+               CONF3("default_shade_color", "default_shadecolor"){}
+               CONF3("default_outline_color", "default_outlinecolor") {}
+               CONF("own_window_colour") {}
 
-                       /* XDBE doesn't seem to provide a way to clear the back buffer
-                        * without interfering with the front buffer, other than passing
-                        * XdbeBackground to XdbeSwapBuffers. That means that if we're
-                        * using XDBE, we need to redraw the text even if it wasn't part of
-                        * the exposed area. OTOH, if we're not going to call draw_stuff at
-                        * all, then no swap happens and we can safely do nothing. */
+               else {
+                       NORM_ERR("%s: %d: no such configuration: '%s'", f, line, name);
+               }
+       }
 
-                       if (!XEmptyRegion(ctx->window.region)) {
-#ifdef HAVE_XDBE
-                               if (use_xdbe) {
-                                       XRectangle r;
+       fclose(fp);
+
+       if (info.music_player_interval == 0) {
+               // default to update_interval
+               info.music_player_interval = update_interval;
+       }
+       if (!global_text) { // didn't supply any text
+               CRIT_ERR(NULL, NULL, "missing text block in configuration; exiting");
+       }
+       return TRUE;
+}
+
+#ifdef X11
+static void load_config_file_x11(const char *f)
+{
+       int line = 0;
+       FILE *fp;
+
+       fp = open_config_file(f);
+       if (!fp) {
+               return;
+       }
+       DBGP("reading contents from config file '%s'", f);
+
+       while (!feof(fp)) {
+               char buff[CONF_BUFF_SIZE], *name, *value;
+               int ret = do_config_step(&line, fp, buff, &name, &value);
+               if (ret == CONF_BREAK) {
+                       break;
+               } else if (ret == CONF_CONTINUE) {
+                       continue;
+               }
 
-                                       r.x = ctx->text_start_x - ctx->window.border_inner_margin - ctx->window.border_outer_margin - ctx->window.border_width;
-                                       r.y = ctx->text_start_y - ctx->window.border_inner_margin - ctx->window.border_outer_margin - ctx->window.border_width;
-                                       r.width = ctx->text_width + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2;
-                                       r.height = ctx->text_height + ctx->window.border_inner_margin * 2 + ctx->window.border_outer_margin * 2 + ctx->window.border_width * 2;
-                                       XUnionRectWithRegion(&r, ctx->window.region, ctx->window.region);
+               CONF2("color0") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       color0 = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
                                }
-#endif
-                               XSetRegion(display, ctx->window.gc, ctx->window.region);
-#ifdef XFT
-                               if (use_xft) {
-                                       XftDrawSetClip(ctx->window.xftdraw, ctx->window.region);
+                       }
+               }
+               CONF("color1") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       color1 = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
                                }
-#endif
-                               draw_stuff(ctx);
-                               XDestroyRegion(ctx->window.region);
-                               ctx->window.region = XCreateRegion();
                        }
-               } else {
-#endif /* X11 */
-                       t = (ctx->next_update_time - get_time()) * 1000000;
-                       if(t > 0) usleep((useconds_t)t);
-                       update_text(ctx);
-                       draw_stuff(ctx);
-#ifdef NCURSES
-                       if(ctx->output_methods & TO_NCURSES) {
-                               refresh();
-                               clear();
+               }
+               CONF("color2") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       color2 = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
+                               }
                        }
-#endif
-#ifdef X11
                }
-#endif /* X11 */
-
-#ifdef SIGNAL_BLOCKING
-               /* unblock signals of interest and let handler fly */
-               if (sigprocmask(SIG_SETMASK, &oldmask, NULL) < 0) {
-                       CRIT_ERR(NULL, NULL, "unable to sigprocmask()");
+               CONF("color3") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       color3 = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
+                               }
+                       }
                }
-#endif
-
-               switch (g_signal_pending) {
-                       case SIGHUP:
-                       case SIGUSR1:
-                               NORM_ERR("received SIGHUP or SIGUSR1. reloading the config file.");
-                               reload_config();
-                               break;
-                       case SIGINT:
-                       case SIGTERM:
-                               NORM_ERR("received SIGINT or SIGTERM to terminate. bye!");
-                               terminate = 1;
-#ifdef X11
-                               if (ctx->output_methods & TO_X) {
-                                       XDestroyRegion(ctx->window.region);
-                                       ctx->window.region = NULL;
-#ifdef HAVE_XDAMAGE
-                                       XDamageDestroy(display, ctx->window.damage);
-                                       XFixesDestroyRegion(display, ctx->window.region2);
-                                       XFixesDestroyRegion(display, ctx->window.part);
-#endif /* HAVE_XDAMAGE */
-                                       if (ctx->disp) {
-                                               free(ctx->disp);
-                                       }
+               CONF("color4") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       color4 = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
                                }
-#endif /* X11 */
-                               if(ctx->overwrite_file) {
-                                       free(ctx->overwrite_file);
-                                       ctx->overwrite_file = 0;
+                       }
+               }
+               CONF("color5") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       color5 = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
                                }
-                               if(ctx->append_file) {
-                                       free(ctx->append_file);
-                                       ctx->append_file = 0;
+                       }
+               }
+               CONF("color6") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       color6 = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
                                }
-                               break;
-                       default:
-                               /* Reaching here means someone set a signal
-                                * (SIGXXXX, signal_handler), but didn't write any code
-                                * to deal with it.
-                                * If you don't want to handle a signal, don't set a handler on
-                                * it in the first place. */
-                               if (g_signal_pending) {
-                                       NORM_ERR("ignoring signal (%d)", g_signal_pending);
+                       }
+               }
+               CONF("color7") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       color7 = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
                                }
-                               break;
+                       }
                }
-#ifdef HAVE_SYS_INOTIFY_H
-               if (inotify_fd != -1 && inotify_config_wd == -1 && ctx->current_config != 0) {
-                       inotify_config_wd = inotify_add_watch(inotify_fd,
-                                       ctx->current_config,
-                                       IN_MODIFY);
+               CONF("color8") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       color8 = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
+                               }
+                       }
                }
-               if (inotify_fd != -1 && inotify_config_wd != -1 && ctx->current_config != 0) {
-                       int len = 0, idx = 0;
-                       fd_set descriptors;
-                       struct timeval time_to_wait;
-
-                       FD_ZERO(&descriptors);
-                       FD_SET(inotify_fd, &descriptors);
-
-                       time_to_wait.tv_sec = time_to_wait.tv_usec = 0;
-
-                       select(inotify_fd + 1, &descriptors, NULL, NULL, &time_to_wait);
-                       if (FD_ISSET(inotify_fd, &descriptors)) {
-                               /* process inotify events */
-                               len = read(inotify_fd, inotify_buff, INOTIFY_BUF_LEN);
-                               while (len > 0 && idx < len) {
-                                       struct inotify_event *ev = (struct inotify_event *) &inotify_buff[idx];
-                                       if (ev->wd == inotify_config_wd && (ev->mask & IN_MODIFY || ev->mask & IN_IGNORED)) {
-                                               /* ctx->current_config should be reloaded */
-                                               NORM_ERR("'%s' modified, reloading...", ctx->current_config);
-                                               reload_config();
-                                               if (ev->mask & IN_IGNORED) {
-                                                       /* for some reason we get IN_IGNORED here
-                                                        * sometimes, so we need to re-add the watch */
-                                                       inotify_config_wd = inotify_add_watch(inotify_fd,
-                                                                       ctx->current_config,
-                                                                       IN_MODIFY);
-                                               }
-                                       }
-#ifdef HAVE_LUA
-                                       else {
-                                               llua_inotify_query(ev->wd, ev->mask);
-                                       }
-#endif /* HAVE_LUA */
-                                       idx += INOTIFY_EVENT_SIZE + ev->len;
+               CONF("color9") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       color9 = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
                                }
                        }
                }
-#endif /* HAVE_SYS_INOTIFY_H */
-
-#ifdef HAVE_LUA
-       llua_update_info(ctx, ctx->update_interval);
-#endif /* HAVE_LUA */
-               g_signal_pending = 0;
+               CONF("default_color") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       default_fg_color = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
+                               }
+                       }
+               }
+               CONF3("default_shade_color", "default_shadecolor") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       default_bg_color = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
+                               }
+                       }
+               }
+               CONF3("default_outline_color", "default_outlinecolor") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       default_out_color = get_x11_color(value);
+                               } else {
+                                       CONF_ERR;
+                               }
+                       }
+               }
+#ifdef OWN_WINDOW
+               CONF("own_window_colour") {
+                       X11_initialisation();
+                       if (x_initialised == YES) {
+                               if (value) {
+                                       background_colour = get_x11_color(value);
+                               } else {
+                                       NORM_ERR("Invalid colour for own_window_colour (try omitting the "
+                                               "'#' for hex colours");
+                               }
+                       }
+               }
+#endif
+               CONF("text") {
+                       /* initialize X11 if nothing X11-related is mentioned before TEXT (and if X11 is the default outputmethod) */
+                       if(output_methods & TO_X) {
+                               X11_initialisation();
+                       }
+               }
+#undef CONF
+#undef CONF2
+#undef CONF3
+#undef CONF_ERR
+#undef CONF_ERR2
+#undef CONF_BREAK
+#undef CONF_CONTINUE
+#undef CONF_BUFF_SIZE
        }
-       clean_up(NULL, NULL);
 
-#ifdef HAVE_SYS_INOTIFY_H
-       if (inotify_fd != -1) {
-               inotify_rm_watch(inotify_fd, inotify_config_wd);
-               close(inotify_fd);
-               inotify_fd = inotify_config_wd = 0;
-       }
-#endif /* HAVE_SYS_INOTIFY_H */
+       fclose(fp);
+
 }
+#endif /* X11 */
 
 static void print_help(const char *prog_name) {
        printf("Usage: %s [OPTION]...\n"
                        PACKAGE_NAME" is a system monitor that renders text on desktop or to own transparent\n"
-                       "ctx->window. Command line options will override configurations defined in config\n"
+                       "window. Command line options will override configurations defined in config\n"
                        "file.\n"
                        "   -v, --version             version\n"
                        "   -q, --quiet               quiet mode\n"
@@ -738,12 +6338,12 @@ static void print_help(const char *prog_name) {
                        "   -f, --font=FONT           font to use\n"
                        "   -X, --display=DISPLAY     X11 display to use\n"
 #ifdef OWN_WINDOW
-                       "   -o, --own-ctx->window          create own ctx->window to draw\n"
+                       "   -o, --own-window          create own window to draw\n"
 #endif
 #ifdef HAVE_XDBE
                        "   -b, --double-buffer       double buffer (prevents flickering)\n"
 #endif
-                       "   -w, --ctx->window-id=WIN_ID    ctx->window id to draw\n"
+                       "   -w, --window-id=WIN_ID    window id to draw\n"
                        "   -x X                      x position\n"
                        "   -y Y                      y position\n"
 #endif /* X11 */
@@ -784,25 +6384,24 @@ static const struct option longopts[] = {
        { "font", 1, NULL, 'f' },
        { "display", 1, NULL, 'X' },
 #ifdef OWN_WINDOW
-       { "own-ctx->window", 0, NULL, 'o' },
+       { "own-window", 0, NULL, 'o' },
 #endif
 #ifdef HAVE_XDBE
        { "double-buffer", 0, NULL, 'b' },
 #endif
-       { "ctx->window-id", 1, NULL, 'w' },
+       { "window-id", 1, NULL, 'w' },
 #endif /* X11 */
        { "text", 1, NULL, 't' },
        { "interval", 0, NULL, 'u' },
        { 0, 0, 0, 0 }
 };
 
-void initialisation(conky_context *ctx, int argc, char **argv)
-{
+void initialisation(int argc, char **argv) {
        struct sigaction act, oact;
 
-       set_default_configurations(ctx);
-       load_config_file(ctx, ctx->current_config);
-       currentconffile = conftree_add(currentconffile, ctx->current_config);
+       set_default_configurations();
+       load_config_file(current_config);
+       currentconffile = conftree_add(currentconffile, current_config);
 
        /* init specials array */
        if ((specials = calloc(sizeof(struct special_t), max_specials)) == 0) {
@@ -846,7 +6445,7 @@ void initialisation(conky_context *ctx, int argc, char **argv)
 
                switch (c) {
                        case 'd':
-                               ctx->fork_to_background = 1;
+                               fork_to_background = 1;
                                break;
                        case 'D':
                                global_debug_level++;
@@ -856,12 +6455,12 @@ void initialisation(conky_context *ctx, int argc, char **argv)
                                set_first_font(optarg);
                                break;
                        case 'a':
-                               ctx->text_alignment = string_to_alignment(optarg);
+                               text_alignment = string_to_alignment(optarg);
                                break;
 
 #ifdef OWN_WINDOW
                        case 'o':
-                               ctx->own_window = 1;
+                               own_window = 1;
                                break;
 #endif
 #ifdef HAVE_XDBE
@@ -871,33 +6470,33 @@ void initialisation(conky_context *ctx, int argc, char **argv)
 #endif
 #endif /* X11 */
                        case 't':
-                               if (ctx->global_text) {
-                                       free(ctx->global_text);
-                                       ctx->global_text = 0;
+                               if (global_text) {
+                                       free(global_text);
+                                       global_text = 0;
                                }
-                               ctx->global_text = strndup(optarg, ctx->max_user_text);
-                               convert_escapes(ctx->global_text);
+                               global_text = strndup(optarg, max_user_text);
+                               convert_escapes(global_text);
                                break;
 
                        case 'u':
-                               ctx->update_interval = strtod(optarg, 0);
-                               ctx->update_interval_old = ctx->update_interval;
-                               if (ctx->info.music_player_interval == 0) {
-                                       // default to ctx->update_interval
-                                       ctx->info.music_player_interval = ctx->update_interval;
+                               update_interval = strtod(optarg, 0);
+                               update_interval_old = update_interval;
+                               if (info.music_player_interval == 0) {
+                                       // default to update_interval
+                                       info.music_player_interval = update_interval;
                                }
                                break;
 
                        case 'i':
-                               ctx->total_run_times = strtod(optarg, 0);
+                               total_run_times = strtod(optarg, 0);
                                break;
 #ifdef X11
                        case 'x':
-                               ctx->gap_x = atoi(optarg);
+                               gap_x = atoi(optarg);
                                break;
 
                        case 'y':
-                               ctx->gap_y = atoi(optarg);
+                               gap_y = atoi(optarg);
                                break;
 #endif /* X11 */
 
@@ -908,20 +6507,20 @@ void initialisation(conky_context *ctx, int argc, char **argv)
 
 #ifdef X11
        /* load font */
-       if (ctx->output_methods & TO_X) {
-               load_config_file_x11(ctx, ctx->current_config);
+       if (output_methods & TO_X) {
+               load_config_file_x11(current_config);
        }
 #endif /* X11 */
 
        /* generate text and get initial size */
-       extract_variable_text(ctx, ctx->global_text);
-       if (ctx->global_text) {
-               free(ctx->global_text);
-               ctx->global_text = 0;
+       extract_variable_text(global_text);
+       if (global_text) {
+               free(global_text);
+               global_text = 0;
        }
-       ctx->global_text = NULL;
+       global_text = NULL;
        /* fork */
-       if (ctx->fork_to_background) {
+       if (fork_to_background) {
                int pid = fork();
 
                switch (pid) {
@@ -946,20 +6545,20 @@ void initialisation(conky_context *ctx, int argc, char **argv)
                }
        }
 
-       ctx->text_buffer = malloc(ctx->max_user_text);
-       memset(ctx->text_buffer, 0, ctx->max_user_text);
-       ctx->tmpstring1 = malloc(text_buffer_size);
-       memset(ctx->tmpstring1, 0, text_buffer_size);
-       ctx->tmpstring2 = malloc(text_buffer_size);
-       memset(ctx->tmpstring2, 0, text_buffer_size);
+       text_buffer = malloc(max_user_text);
+       memset(text_buffer, 0, max_user_text);
+       tmpstring1 = malloc(text_buffer_size);
+       memset(tmpstring1, 0, text_buffer_size);
+       tmpstring2 = malloc(text_buffer_size);
+       memset(tmpstring2, 0, text_buffer_size);
 
 #ifdef X11
-       ctx->xargc = argc;
-       ctx->xargv = argv;
-       X11_create_window(ctx);
+       xargc = argc;
+       xargv = argv;
+       X11_create_window();
 #endif /* X11 */
 #ifdef HAVE_LUA
-       llua_setup_info(ctx, ctx->update_interval);
+       llua_setup_info(&info, update_interval);
 #endif /* HAVE_LUA */
 #ifdef XOAP
        xmlInitParser();
@@ -988,10 +6587,6 @@ void initialisation(conky_context *ctx, int argc, char **argv)
 
 int main(int argc, char **argv)
 {
-       /* Conky's main context struct */
-       conky_context mctx;
-       conky_context *ctx = &mctx;
-
 #ifdef X11
        char *s, *temp;
        unsigned int x;
@@ -1000,8 +6595,10 @@ int main(int argc, char **argv)
        argc_copy = argc;
        argv_copy = argv;
        g_signal_pending = 0;
-       memset(ctx, 0, sizeof(conky_context));
-       ctx->max_user_text = MAX_USER_TEXT_DEFAULT;
+       max_user_text = MAX_USER_TEXT_DEFAULT;
+       current_config = 0;
+       memset(&info, 0, sizeof(info));
+       memset(template, 0, sizeof(template));
        clear_net_stats();
 
 #ifdef TCP_PORT_MONITOR
@@ -1022,7 +6619,7 @@ int main(int argc, char **argv)
                }
                temp[x] = 0;
                if (strstr(temp, "utf-8") || strstr(temp, "utf8")) {
-                       ctx->utf8_mode = 1;
+                       utf8_mode = 1;
                }
 
                free(temp);
@@ -1043,10 +6640,10 @@ int main(int argc, char **argv)
                        case 'V':
                                print_version();
                        case 'c':
-                               if (ctx->current_config) {
-                                       free(ctx->current_config);
+                               if (current_config) {
+                                       free(current_config);
                                }
-                               ctx->current_config = strndup(optarg, ctx->max_user_text);
+                               current_config = strndup(optarg, max_user_text);
                                break;
                        case 'q':
                                freopen("/dev/null", "w", stderr);
@@ -1061,12 +6658,12 @@ int main(int argc, char **argv)
 #endif
 #ifdef X11
                        case 'w':
-                               ctx->window.window = strtol(optarg, 0, 0);
+                               window.window = strtol(optarg, 0, 0);
                                break;
                        case 'X':
-                               if (ctx->disp)
-                                       free(ctx->disp);
-                               ctx->disp = strdup(optarg);
+                               if (disp)
+                                       free(disp);
+                               disp = strdup(optarg);
                                break;
 #endif /* X11 */
 
@@ -1076,19 +6673,19 @@ int main(int argc, char **argv)
        }
 
        /* check if specified config file is valid */
-       if (ctx->current_config) {
+       if (current_config) {
                struct stat sb;
-               if (stat(ctx->current_config, &sb) ||
+               if (stat(current_config, &sb) ||
                                (!S_ISREG(sb.st_mode) && !S_ISLNK(sb.st_mode))) {
-                       NORM_ERR("invalid configuration file '%s'\n", ctx->current_config);
-                       free(ctx->current_config);
-                       ctx->current_config = 0;
+                       NORM_ERR("invalid configuration file '%s'\n", current_config);
+                       free(current_config);
+                       current_config = 0;
                }
        }
 
-       /* load ctx->current_config, CONFIG_FILE or SYSTEM_CONFIG_FILE */
+       /* load current_config, CONFIG_FILE or SYSTEM_CONFIG_FILE */
 
-       if (!ctx->current_config) {
+       if (!current_config) {
                /* load default config file */
                char buf[DEFAULT_TEXT_BUFFER_SIZE];
                FILE *fp;
@@ -1096,20 +6693,20 @@ int main(int argc, char **argv)
                /* Try to use personal config file first */
                to_real_path(buf, CONFIG_FILE);
                if (buf[0] && (fp = fopen(buf, "r"))) {
-                       ctx->current_config = strndup(buf, ctx->max_user_text);
+                       current_config = strndup(buf, max_user_text);
                        fclose(fp);
                }
 
                /* Try to use system config file if personal config not readable */
-               if (!ctx->current_config && (fp = fopen(SYSTEM_CONFIG_FILE, "r"))) {
-                       ctx->current_config = strndup(SYSTEM_CONFIG_FILE, ctx->max_user_text);
+               if (!current_config && (fp = fopen(SYSTEM_CONFIG_FILE, "r"))) {
+                       current_config = strndup(SYSTEM_CONFIG_FILE, max_user_text);
                        fclose(fp);
                }
 
                /* No readable config found */
-               if (!ctx->current_config) {
+               if (!current_config) {
 #ifdef CONFIG_OUTPUT
-                       ctx->current_config = strdup("==builtin==");
+                       current_config = strdup("==builtin==");
                        NORM_ERR("no readable personal or system-wide config file found,"
                                        " using builtin default");
 #else
@@ -1127,9 +6724,9 @@ int main(int argc, char **argv)
        inotify_fd = inotify_init();
 #endif /* HAVE_SYS_INOTIFY_H */
 
-       initialisation(&mctx, argc, argv);
+       initialisation(argc, argv);
 
-       main_loop(&mctx);
+       main_loop();
 
 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
        kvm_close(kd);
@@ -1139,10 +6736,21 @@ int main(int argc, char **argv)
 
 }
 
+void alarm_handler(void) {
+       if(childpid > 0) {
+               kill(childpid, SIGTERM);
+       }
+}
+
 static void signal_handler(int sig)
 {
-       /* signal handler is light as a feather, as it should be.  we will poll
-        * g_signal_pending with each loop of conky and do any signal processing
-        * there, NOT here */
+       /* signal handler is light as a feather, as it should be.
+        * we will poll g_signal_pending with each loop of conky
+        * and do any signal processing there, NOT here (except 
+        * SIGALRM because this is caused when conky is hanging) */
+       if(sig == SIGALRM) {
+               alarm_handler();
+       } else {
                g_signal_pending = sig;
+       }
 }
index 5555ea4..1742526 100644 (file)
@@ -33,6 +33,8 @@
 #define _conky_h_
 
 #include "config.h"    /* defines */
+#include "common.h"    /* at least for struct dns_data */
+#include <sys/utsname.h> /* struct uname_s */
 
 #if defined(HAS_MCHECK_H)
 #include <mcheck.h>
@@ -131,8 +133,45 @@ char *strndup(const char *s, size_t n);
  * one doesn't know what to choose. Defaults to 256.  */
 extern unsigned int text_buffer_size;
 
+struct entropy_s {
+       unsigned int entropy_avail;
+       unsigned int poolsize;
+};
+
+struct usr_info {
+       char *names;
+       char *times;
+       char *terms;
+       int number;
+};
+
+struct gateway_info {
+       char *iface;
+       char *ip;
+       int count;
+};
+
 #ifdef X11
+struct monitor_info {
+       int number;
+       int current;
+};
+
+struct desktop_info {
+        int current;
+        int number;
+        unsigned int nitems;
+        char *all_names;
+        char *name;
+};
+
+struct x11_info {
+       struct monitor_info monitor;
+       struct desktop_info desktop;
+};
+
 int get_stippled_borders(void);
+
 #endif /* X11 */
 
 /* defined in conky.c */
@@ -145,6 +184,15 @@ long get_current_text_color(void);
 void set_updatereset(int);
 int get_updatereset(void);
 
+struct conftree {
+       char* string;
+       struct conftree* horz_next;
+       struct conftree* vert_next;
+       struct conftree* back;
+};
+
+char load_config_file(const char *);
+
 char *get_global_text(void);
 extern long global_text_lines;
 
@@ -154,6 +202,9 @@ struct conftree* conftree_add(struct conftree* previous, const char* newstring);
 
 extern struct conftree *currentconffile;
 
+#define MAX_TEMPLATES 10
+char **get_templates(void);
+
 enum {
        INFO_CPU = 0,
        INFO_MAIL = 1,
@@ -227,6 +278,69 @@ enum {
        IFUP_ADDR
 } ifup_strictness;
 
+struct information {
+       unsigned int mask;
+
+       struct utsname uname_s;
+
+       char freq[10];
+
+       double uptime;
+
+       /* memory information in kilobytes */
+       unsigned long long mem, memeasyfree, memfree, memmax, swap, swapfree, swapmax;
+       unsigned long long bufmem, buffers, cached;
+
+       unsigned short procs;
+       unsigned short run_procs;
+
+       float *cpu_usage;
+       /* struct cpu_stat cpu_summed; what the hell is this? */
+       unsigned int cpu_count;
+       int cpu_avg_samples;
+
+       int net_avg_samples;
+
+       int diskio_avg_samples;
+
+       float loadavg[3];
+
+       struct mail_s *mail;
+       int mail_running;
+#ifdef XMMS2
+       struct xmms2_s xmms2;
+#endif
+#ifdef AUDACIOUS
+       AUDACIOUS_S audacious;
+#endif
+#ifdef BMPX
+       struct bmpx_s bmpx;
+#endif
+       struct usr_info users;
+       struct gateway_info gw_info;
+       struct dns_data nameserver_info;
+       struct process *cpu[10];
+       struct process *memu[10];
+       struct process *time[10];
+#ifdef IOSTATS
+       struct process *io[10];
+#endif
+       struct process *first_process;
+       unsigned long looped;
+       struct entropy_s entropy;
+       double music_player_interval;
+
+#ifdef X11
+       struct x11_info x11;
+#endif
+
+#ifdef APCUPSD
+       APCUPSD_S apcupsd;
+#endif
+
+       short kflags;   /* kernel settings, see enum KFLAG */
+};
+
 #ifdef HAVE_LUA
 #include "llua.h"
 #endif /* HAVE_LUA */
@@ -241,16 +355,71 @@ enum {
        /* bits 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 available for future use */
        /* KFLAG_NEXT_ONE = 0x04 */
 };
-#define KFLAG_SETON(a) ctx->info.kflags |= a
-#define KFLAG_SETOFF(a) ctx->info.kflags &= (~a)
-#define KFLAG_FLIP(a) ctx->info.kflags ^= a
-#define KFLAG_ISSET(a) ctx->info.kflags & a
+#define KFLAG_SETON(a) info.kflags |= a
+#define KFLAG_SETOFF(a) info.kflags &= (~a)
+#define KFLAG_FLIP(a) info.kflags ^= a
+#define KFLAG_ISSET(a) info.kflags & a
+
+/* defined in conky.c, needed by top.c */
+extern int top_cpu, top_mem, top_time;
+#ifdef IOSTATS
+extern int top_io;
+#endif
+
+/* defined in conky.c, needed by top.c */
+extern int cpu_separate;
+
+/* struct that has all info to be shared between
+ * instances of the same text object */
+extern struct information info;
 
 /* defined in users.c */
 void update_users(void);
 
+/* defined in conky.c */
+extern double current_update_time, last_update_time, update_interval;
+
+/* defined in conky.c */
+int spaced_print(char *, int, const char *, int, ...)
+       __attribute__((format(printf, 3, 5)));
 extern int inotify_fd;
 
+/* defined in conky.c
+ * evaluates 'text' and places the result in 'buffer'
+ */
+void evaluate(const char *text, char *buffer);
+
+/* maximum size of config TEXT buffer, i.e. below TEXT line. */
+extern unsigned int max_user_text;
+
+/* path to config file */
+extern char *current_config;
+
+/* just a wrapper for read_exec() defined in conky.c */
+void do_read_exec(const char *data, char *buf, const int size);
+
+#ifdef X11
+#define TO_X 1
+#endif /* X11 */
+#define TO_STDOUT 2
+#define TO_STDERR 4
+#define OVERWRITE_FILE 8
+#define APPEND_FILE 16
+#ifdef NCURSES
+#define TO_NCURSES 32
+#endif /* NCURSES */
+enum x_initialiser_state {
+       NO = 0,
+       YES = 1,
+       NEVER = 2
+};
+extern int output_methods;
+extern enum x_initialiser_state x_initialised;
+
+void set_update_interval(double interval);
+
+#define DEFAULT_TEXT_BUFFER_SIZE_S "##DEFAULT_TEXT_BUFFER_SIZE"
+
 #define NOBATTERY 0
 
 /* to get rid of 'unused variable' warnings */
index 3d7b5f9..54621f5 100644 (file)
  *
  */
 
-#include "config.h"
-#include "structs.h"
+/* local headers */
 #include "core.h"
-
 #include "text_object.h"
-#include "obj_destroy.h"
-#include "common.h"
-#include "specials.h"
-#include "logging.h"
-
-#include <sys/types.h>
-#include <sys/wait.h>
-
+#include "algebra.h"
+#include "build.h"
+#include "colours.h"
+#include "diskio.h"
 #ifdef X11
+#include "fonts.h"
+#endif
+#include "fs.h"
+#include "logging.h"
+#include "mixer.h"
+#include "mail.h"
+#include "mboxscan.h"
+#include "specials.h"
+#include "temphelper.h"
+#include "tailhead.h"
+#include "top.h"
+
+/* check for OS and include appropriate headers */
+#if defined(__linux__)
+#include "linux.h"
+#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+#include "freebsd.h"
+#elif defined(__OpenBSD__)
+#include "openbsd.h"
+#endif
 
-static void X11_initialisation(conky_context *ctx);
-
-/* display to connect to */
-static char *disp = NULL;
-
-#endif /* X11 */
-
-/* path to config file */
-char *current_config;
-
-/* set to 1 if you want all text to be in uppercase */
-static unsigned int stuff_in_uppercase;
+#include <string.h>
+#include <ctype.h>
 
-/* Run how many times? */
-static unsigned long total_run_times;
+#ifdef HAVE_ICONV
+#include <iconv.h>
 
-/* fork? */
-static int fork_to_background;
+#define ICONV_CODEPAGE_LENGTH 20
 
-static int cpu_avg_samples, net_avg_samples, diskio_avg_samples;
+int register_iconv(iconv_t *new_iconv);
 
-/* filenames for output */
-char *overwrite_file = NULL; FILE *overwrite_fpointer = NULL;
-char *append_file = NULL; FILE *append_fpointer = NULL;
+long iconv_selected;
+long iconv_count = 0;
+char iconv_converting;
+static iconv_t **iconv_cd = 0;
 
-#ifdef X11
+char is_iconv_converting(void)
+{
+       return iconv_converting;
+}
 
-static int show_graph_scale;
-static int show_graph_range;
+void set_iconv_converting(char i)
+{
+       iconv_converting = i;
+}
 
-/* Position on the screen */
-static int text_alignment;
-static int gap_x, gap_y;
+long get_iconv_selected(void)
+{
+       return iconv_selected;
+}
 
-/* border */
-static int draw_borders;
-static int draw_graph_borders;
-static int stippled_borders;
+void set_iconv_selected(long i)
+{
+       iconv_selected = i;
+}
 
-int get_stippled_borders(void)
+int register_iconv(iconv_t *new_iconv)
 {
-       return stippled_borders;
+       iconv_cd = realloc(iconv_cd, sizeof(iconv_t *) * (iconv_count + 1));
+       if (!iconv_cd) {
+               CRIT_ERR(NULL, NULL, "Out of memory");
+       }
+       iconv_cd[iconv_count] = malloc(sizeof(iconv_t));
+       if (!iconv_cd[iconv_count]) {
+               CRIT_ERR(NULL, NULL, "Out of memory");
+       }
+       memcpy(iconv_cd[iconv_count], new_iconv, sizeof(iconv_t));
+       iconv_count++;
+       return iconv_count;
 }
 
-static int draw_shades, draw_outline;
+void free_iconv(void)
+{
+       if (iconv_cd) {
+               long i;
 
-long default_fg_color, default_bg_color, default_out_color;
+               for (i = 0; i < iconv_count; i++) {
+                       if (iconv_cd[i]) {
+                               iconv_close(*iconv_cd[i]);
+                               free(iconv_cd[i]);
+                       }
+               }
+               free(iconv_cd);
+       }
+       iconv_cd = 0;
+}
 
-/* create own window or draw stuff to root? */
-static int set_transparent = 0;
+void iconv_convert(size_t a, char *buff_in, char *p, size_t p_max_size)
+{
+       if (a > 0 && is_iconv_converting() && get_iconv_selected() > 0
+                       && (iconv_cd[iconv_selected - 1] != (iconv_t) (-1))) {
+               int bytes;
+               size_t dummy1, dummy2;
+#ifdef __FreeBSD__
+               const char *ptr = buff_in;
+#else
+               char *ptr = buff_in;
+#endif
+               char *outptr = p;
 
-#ifdef OWN_WINDOW
-static int own_window = 0;
-static int background_colour = 0;
+               dummy1 = dummy2 = a;
 
-/* fixed size/pos is set if wm/user changes them */
-static int fixed_size = 0, fixed_pos = 0;
-#endif
+               strncpy(buff_in, p, p_max_size);
 
-static int minimum_width, minimum_height;
-static int maximum_width;
+               iconv(*iconv_cd[iconv_selected - 1], NULL, NULL, NULL, NULL);
+               while (dummy1 > 0) {
+                       bytes = iconv(*iconv_cd[iconv_selected - 1], &ptr, &dummy1,
+                                       &outptr, &dummy2);
+                       if (bytes == -1) {
+                               NORM_ERR("Iconv codeset conversion failed");
+                               break;
+                       }
+               }
 
-#endif /* X11 */
+               /* It is nessecary when we are converting from multibyte to
+                * singlebyte codepage */
+               a = outptr - p;
+       }
+}
+#endif /* HAVE_ICONV */
 
-#ifdef __OpenBSD__
-static int sensor_device;
-#endif
+/* strip a leading /dev/ if any, following symlinks first
+ *
+ * BEWARE: this function returns a pointer to static content
+ *         which gets overwritten in consecutive calls. I.e.:
+ *         this function is NOT reentrant.
+ */
+static const char *dev_name(const char *path)
+{
+       static char buf[255];   /* should be enough for pathnames */
+       ssize_t buflen;
 
-long color0, color1, color2, color3, color4, color5, color6, color7, color8,
-        color9;
+       if (!path)
+               return NULL;
 
-static char *template[MAX_TEMPLATES];
+#define DEV_NAME(x) \
+  x != NULL && strlen(x) > 5 && strncmp(x, "/dev/", 5) == 0 ? x + 5 : x
+       if ((buflen = readlink(path, buf, 254)) == -1)
+               return DEV_NAME(path);
+       buf[buflen] = '\0';
+       return DEV_NAME(buf);
+#undef DEV_NAME
+}
 
-char **get_templates(void)
+static struct text_object *new_text_object_internal(void)
 {
-       return template;
+       struct text_object *obj = malloc(sizeof(struct text_object));
+       memset(obj, 0, sizeof(struct text_object));
+       return obj;
 }
 
-/* maximum size of config TEXT buffer, i.e. below TEXT line. */
-unsigned int max_user_text;
-
-/* maximum size of individual text buffers, ie $exec buffer size */
-unsigned int text_buffer_size = DEFAULT_TEXT_BUFFER_SIZE;
-
-/* UTF-8 */
-int utf8_mode = 0;
+static struct text_object *create_plain_text(const char *s)
+{
+       struct text_object *obj;
 
-/* no buffers in used memory? */
-int no_buffers;
+       if (s == NULL || *s == '\0') {
+               return NULL;
+       }
 
-/* pad percentages to decimals? */
-static int pad_percents = 0;
+       obj = new_text_object_internal();
 
-static char *global_text = 0;
+       obj->type = OBJ_text;
+       obj->data.s = strndup(s, text_buffer_size);
+       return obj;
+}
 
-char *get_global_text(void)
+/* construct_text_object() creates a new text_object */
+struct text_object *construct_text_object(const char *s, const char *arg, long
+               line, void **ifblock_opaque, void *free_at_crash)
 {
-       return global_text;
-}
+       // struct text_object *obj = new_text_object();
+       struct text_object *obj = new_text_object_internal();
 
-long global_text_lines;
+       obj->line = line;
 
-static int total_updates;
-static int updatereset;
+#define OBJ(a, n) if (strcmp(s, #a) == 0) { \
+       obj->type = OBJ_##a; need_mask |= (1ULL << n); {
+#define OBJ_IF(a, n) if (strcmp(s, #a) == 0) { \
+       obj->type = OBJ_##a; need_mask |= (1ULL << n); \
+       obj_be_ifblock_if(ifblock_opaque, obj); {
+#define END } } else
 
-void set_updatereset(int i)
-{
-       updatereset = i;
+#define SIZE_DEFAULTS(arg) { \
+       obj->a = default_##arg##_width; \
+       obj->b = default_##arg##_height; \
 }
 
-int get_updatereset(void)
-{
-       return updatereset;
-}
+#ifdef X11
+       if (s[0] == '#') {
+               obj->type = OBJ_color;
+               obj->data.l = get_x11_color(s);
+       } else
+#endif /* X11 */
+#ifdef __OpenBSD__
+       OBJ(freq, INFO_FREQ)
+#else
+       OBJ(acpitemp, 0)
+               obj->data.i = open_acpi_temperature(arg);
+       END OBJ(acpiacadapter, 0)
+       END OBJ(freq, INFO_FREQ)
+#endif /* !__OpenBSD__ */
+               get_cpu_count();
+               if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
+                               || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
+                       obj->data.cpu_index = 1;
+                       /* NORM_ERR("freq: Invalid CPU number or you don't have that many CPUs! "
+                               "Displaying the clock for CPU 1."); */
+               } else {
+                       obj->data.cpu_index = atoi(&arg[0]);
+               }
+               obj->a = 1;
+       END OBJ(freq_g, INFO_FREQ)
+               get_cpu_count();
+               if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
+                               || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
+                       obj->data.cpu_index = 1;
+                       /* NORM_ERR("freq_g: Invalid CPU number or you don't have that many "
+                               "CPUs! Displaying the clock for CPU 1."); */
+               } else {
+                       obj->data.cpu_index = atoi(&arg[0]);
+               }
+               obj->a = 1;
+       END OBJ(read_tcp, 0)
+               if (arg) {
+                       obj->data.read_tcp.host = malloc(text_buffer_size);
+                       sscanf(arg, "%s", obj->data.read_tcp.host);
+                       sscanf(arg+strlen(obj->data.read_tcp.host), "%u", &(obj->data.read_tcp.port));
+                       if(obj->data.read_tcp.port == 0) {
+                               obj->data.read_tcp.port = atoi(obj->data.read_tcp.host);
+                               strcpy(obj->data.read_tcp.host,"localhost");
+                       }
+                       obj->data.read_tcp.port = htons(obj->data.read_tcp.port);
+                       if(obj->data.read_tcp.port < 1 || obj->data.read_tcp.port > 65535) {
+                               CRIT_ERR(obj, free_at_crash, "read_tcp: Needs \"(host) port\" as argument(s)");
+                       }
+               }else{
+                       CRIT_ERR(obj, free_at_crash, "read_tcp: Needs \"(host) port\" as argument(s)");
+               }
+#if defined(__linux__)
+       END OBJ(voltage_mv, 0)
+               get_cpu_count();
+               if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
+                               || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
+                       obj->data.cpu_index = 1;
+                       /* NORM_ERR("voltage_mv: Invalid CPU number or you don't have that many "
+                               "CPUs! Displaying voltage for CPU 1."); */
+               } else {
+                       obj->data.cpu_index = atoi(&arg[0]);
+               }
+               obj->a = 1;
+       END OBJ(voltage_v, 0)
+               get_cpu_count();
+               if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
+                               || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
+                       obj->data.cpu_index = 1;
+                       /* NORM_ERR("voltage_v: Invalid CPU number or you don't have that many "
+                               "CPUs! Displaying voltage for CPU 1."); */
+               } else {
+                       obj->data.cpu_index = atoi(&arg[0]);
+               }
+               obj->a = 1;
 
-int check_contains(char *f, char *s)
-{
-       int ret = 0;
-       FILE *where = open_file(f, 0);
+#ifdef HAVE_IWLIB
+       END OBJ(wireless_essid, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+       END OBJ(wireless_mode, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+       END OBJ(wireless_bitrate, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+       END OBJ(wireless_ap, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+       END OBJ(wireless_link_qual, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+       END OBJ(wireless_link_qual_max, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+       END OBJ(wireless_link_qual_perc, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+       END OBJ(wireless_link_bar, INFO_NET)
+               SIZE_DEFAULTS(bar);
+               if (arg) {
+                       arg = scan_bar(arg, &obj->a, &obj->b);
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+#endif /* HAVE_IWLIB */
 
-       if (where) {
-               char buf1[256];
+#endif /* __linux__ */
 
-               while (fgets(buf1, 256, where)) {
-                       if (strstr(buf1, s)) {
-                               ret = 1;
-                               break;
-                       }
+#ifndef __OpenBSD__
+       END OBJ(acpifan, 0)
+       END OBJ(battery, 0)
+               char bat[64];
+
+               if (arg) {
+                       sscanf(arg, "%63s", bat);
+               } else {
+                       strcpy(bat, "BAT0");
                }
-               fclose(where);
-       } else {
-               NORM_ERR("Could not open the file");
-       }
-       return ret;
-}
+               obj->data.s = strndup(bat, text_buffer_size);
+       END OBJ(battery_short, 0)
+               char bat[64];
 
-#ifdef X11
+               if (arg) {
+                       sscanf(arg, "%63s", bat);
+               } else {
+                       strcpy(bat, "BAT0");
+               }
+               obj->data.s = strndup(bat, text_buffer_size);
+       END OBJ(battery_time, 0)
+               char bat[64];
 
-static inline int calc_text_width(conky_context *ctx, const char *s, int l)
-{
-       if ((ctx->output_methods & TO_X) == 0) {
-               return 0;
-       }
-#ifdef XFT
-       if (use_xft) {
-               XGlyphInfo gi;
+               if (arg) {
+                       sscanf(arg, "%63s", bat);
+               } else {
+                       strcpy(bat, "BAT0");
+               }
+               obj->data.s = strndup(bat, text_buffer_size);
+       END OBJ(battery_percent, 0)
+               char bat[64];
+
+               if (arg) {
+                       sscanf(arg, "%63s", bat);
+               } else {
+                       strcpy(bat, "BAT0");
+               }
+               obj->data.s = strndup(bat, text_buffer_size);
+       END OBJ(battery_bar, 0)
+               char bat[64];
+               SIZE_DEFAULTS(bar);
+               obj->b = 6;
+               if (arg) {
+                       arg = scan_bar(arg, &obj->a, &obj->b);
+                       sscanf(arg, "%63s", bat);
+               } else {
+                       strcpy(bat, "BAT0");
+               }
+               obj->data.s = strndup(bat, text_buffer_size);
+#endif /* !__OpenBSD__ */
+
+#if defined(__linux__)
+       END OBJ(disk_protect, 0)
+               if (arg)
+                       obj->data.s = strndup(dev_name(arg), text_buffer_size);
+               else
+                       CRIT_ERR(obj, free_at_crash, "disk_protect needs an argument");
+       END OBJ(i8k_version, INFO_I8K)
+       END OBJ(i8k_bios, INFO_I8K)
+       END OBJ(i8k_serial, INFO_I8K)
+       END OBJ(i8k_cpu_temp, INFO_I8K)
+       END OBJ(i8k_left_fan_status, INFO_I8K)
+       END OBJ(i8k_right_fan_status, INFO_I8K)
+       END OBJ(i8k_left_fan_rpm, INFO_I8K)
+       END OBJ(i8k_right_fan_rpm, INFO_I8K)
+       END OBJ(i8k_ac_status, INFO_I8K)
+       END OBJ(i8k_buttons_status, INFO_I8K)
+#if defined(IBM)
+       END OBJ(ibm_fan, 0)
+       END OBJ(ibm_temps, 0)
+               if (!arg) {
+                       CRIT_ERR(obj, free_at_crash, "ibm_temps: needs an argument");
+               }
+               if (!isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) >= 8) {
+                       obj->data.sensor = 0;
+                       NORM_ERR("Invalid temperature sensor! Sensor number must be 0 to 7. "
+                               "Using 0 (CPU temp sensor).");
+               }
+               obj->data.sensor = atoi(&arg[0]);
+       END OBJ(ibm_volume, 0)
+       END OBJ(ibm_brightness, 0)
+#endif
+       /* information from sony_laptop kernel module
+        * /sys/devices/platform/sony-laptop */
+       END OBJ(sony_fanspeed, 0)
+       END OBJ_IF(if_gw, INFO_GW)
+       END OBJ(ioscheduler, 0)
+               if (!arg) {
+                       CRIT_ERR(obj, free_at_crash, "get_ioscheduler needs an argument (e.g. hda)");
+                       obj->data.s = 0;
+               } else
+                       obj->data.s = strndup(dev_name(arg), text_buffer_size);
+       END OBJ(laptop_mode, 0)
+       END OBJ(pb_battery, 0)
+               if (arg && strcmp(arg, "status") == EQUAL) {
+                       obj->data.i = PB_BATT_STATUS;
+               } else if (arg && strcmp(arg, "percent") == EQUAL) {
+                       obj->data.i = PB_BATT_PERCENT;
+               } else if (arg && strcmp(arg, "time") == EQUAL) {
+                       obj->data.i = PB_BATT_TIME;
+               } else {
+                       NORM_ERR("pb_battery: needs one argument: status, percent or time");
+                       free(obj);
+                       return NULL;
+               }
 
-               if (utf8_mode) {
-                       XftTextExtentsUtf8(display, ctx->fonts[ctx->selected_font].xftfont,
-                               (const FcChar8 *) s, l, &gi);
+#endif /* __linux__ */
+#if (defined(__FreeBSD__) || defined(__linux__))
+       END OBJ_IF(if_up, 0)
+               if (!arg) {
+                       NORM_ERR("if_up needs an argument");
+                       obj->data.ifblock.s = 0;
                } else {
-                       XftTextExtents8(display, ctx->fonts[ctx->selected_font].xftfont,
-                               (const FcChar8 *) s, l, &gi);
+                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
                }
-               return gi.xOff;
-       } else
 #endif
-       {
-               return XTextWidth(ctx->fonts[ctx->selected_font].font, s, l);
-       }
+#if defined(__OpenBSD__)
+       END OBJ(obsd_sensors_temp, 0)
+               if (!arg) {
+                       CRIT_ERR(obj, free_at_crash, "obsd_sensors_temp: needs an argument");
+               }
+               if (!isdigit(arg[0]) || atoi(&arg[0]) < 0
+                               || atoi(&arg[0]) > OBSD_MAX_SENSORS - 1) {
+                       obj->data.sensor = 0;
+                       NORM_ERR("Invalid temperature sensor number!");
+               }
+               obj->data.sensor = atoi(&arg[0]);
+       END OBJ(obsd_sensors_fan, 0)
+               if (!arg) {
+                       CRIT_ERR(obj, free_at_crash, "obsd_sensors_fan: needs 2 arguments (device and sensor "
+                               "number)");
+               }
+               if (!isdigit(arg[0]) || atoi(&arg[0]) < 0
+                               || atoi(&arg[0]) > OBSD_MAX_SENSORS - 1) {
+                       obj->data.sensor = 0;
+                       NORM_ERR("Invalid fan sensor number!");
+               }
+               obj->data.sensor = atoi(&arg[0]);
+       END OBJ(obsd_sensors_volt, 0)
+               if (!arg) {
+                       CRIT_ERR(obj, free_at_crash, "obsd_sensors_volt: needs 2 arguments (device and sensor "
+                               "number)");
+               }
+               if (!isdigit(arg[0]) || atoi(&arg[0]) < 0
+                               || atoi(&arg[0]) > OBSD_MAX_SENSORS - 1) {
+                       obj->data.sensor = 0;
+                       NORM_ERR("Invalid voltage sensor number!");
+               }
+               obj->data.sensor = atoi(&arg[0]);
+       END OBJ(obsd_vendor, 0)
+       END OBJ(obsd_product, 0)
+#endif /* __OpenBSD__ */
+       END OBJ(buffers, INFO_BUFFERS)
+       END OBJ(cached, INFO_BUFFERS)
+#define SCAN_CPU(__arg, __var) { \
+       int __offset = 0; \
+       if (__arg && sscanf(__arg, " cpu%u %n", &__var, &__offset) > 0) \
+               __arg += __offset; \
+       else \
+               __var = 0; \
 }
+       END OBJ(cpu, INFO_CPU)
+               SCAN_CPU(arg, obj->data.cpu_index);
+               DBGP2("Adding $cpu for CPU %d", obj->data.cpu_index);
+#ifdef X11
+       END OBJ(cpugauge, INFO_CPU)
+               SIZE_DEFAULTS(gauge);
+               SCAN_CPU(arg, obj->data.cpu_index);
+               scan_gauge(arg, &obj->a, &obj->b);
+               DBGP2("Adding $cpugauge for CPU %d", obj->data.cpu_index);
 #endif /* X11 */
+       END OBJ(cpubar, INFO_CPU)
+               SIZE_DEFAULTS(bar);
+               SCAN_CPU(arg, obj->data.cpu_index);
+               scan_bar(arg, &obj->a, &obj->b);
+               DBGP2("Adding $cpubar for CPU %d", obj->data.cpu_index);
+#ifdef X11
+       END OBJ(cpugraph, INFO_CPU)
+               char *buf = 0;
+               SIZE_DEFAULTS(graph);
+               SCAN_CPU(arg, obj->data.cpu_index);
+               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
+                       &obj->e, &obj->char_a, &obj->char_b);
+               DBGP2("Adding $cpugraph for CPU %d", obj->data.cpu_index);
+               if (buf) free(buf);
+       END OBJ(loadgraph, INFO_LOADAVG)
+               char *buf = 0;
+               SIZE_DEFAULTS(graph);
+               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
+                               &obj->e, &obj->char_a, &obj->char_b);
+               if (buf) {
+                       int a = 1, r = 3;
+                       if (arg) {
+                               r = sscanf(arg, "%d", &a);
+                       }
+                       obj->data.loadavg[0] = (r >= 1) ? (unsigned char) a : 0;
+                       free(buf);
+               }
+#endif /* X11 */
+       END OBJ(diskio, INFO_DISKIO)
+               obj->data.diskio = prepare_diskio_stat(dev_name(arg));
+       END OBJ(diskio_read, INFO_DISKIO)
+               obj->data.diskio = prepare_diskio_stat(dev_name(arg));
+       END OBJ(diskio_write, INFO_DISKIO)
+               obj->data.diskio = prepare_diskio_stat(dev_name(arg));
+#ifdef X11
+       END OBJ(diskiograph, INFO_DISKIO)
+               char *buf = 0;
+               SIZE_DEFAULTS(graph);
+               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
+                               &obj->e, &obj->char_a, &obj->char_b);
+
+               obj->data.diskio = prepare_diskio_stat(dev_name(buf));
+               if (buf) free(buf);
+       END OBJ(diskiograph_read, INFO_DISKIO)
+               char *buf = 0;
+               SIZE_DEFAULTS(graph);
+               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
+                               &obj->e, &obj->char_a, &obj->char_b);
+
+               obj->data.diskio = prepare_diskio_stat(dev_name(buf));
+               if (buf) free(buf);
+       END OBJ(diskiograph_write, INFO_DISKIO)
+               char *buf = 0;
+               SIZE_DEFAULTS(graph);
+               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
+                               &obj->e, &obj->char_a, &obj->char_b);
+
+               obj->data.diskio = prepare_diskio_stat(dev_name(buf));
+               if (buf) free(buf);
+#endif /* X11 */
+       END OBJ(color, 0)
+#ifdef X11
+               if (output_methods & TO_X) {
+                       obj->data.l = arg ? get_x11_color(arg) : default_fg_color;
+                       set_current_text_color(obj->data.l);
+               }
+#endif /* X11 */
+#ifdef NCURSES
+               if (output_methods & TO_NCURSES) {
+                       obj->data.l = COLOR_WHITE;
+                       if(arg) {
+                               if(strcasecmp(arg, "red") == 0) {
+                                       obj->data.l = COLOR_RED;
+                               }else if(strcasecmp(arg, "green") == 0) {
+                                       obj->data.l = COLOR_GREEN;
+                               }else if(strcasecmp(arg, "yellow") == 0) {
+                                       obj->data.l = COLOR_YELLOW;
+                               }else if(strcasecmp(arg, "blue") == 0) {
+                                       obj->data.l = COLOR_BLUE;
+                               }else if(strcasecmp(arg, "magenta") == 0) {
+                                       obj->data.l = COLOR_MAGENTA;
+                               }else if(strcasecmp(arg, "cyan") == 0) {
+                                       obj->data.l = COLOR_CYAN;
+                               }else if(strcasecmp(arg, "black") == 0) {
+                                       obj->data.l = COLOR_BLACK;
+                               }
+                       }
+                       set_current_text_color(obj->data.l);
+                       init_pair(obj->data.l, obj->data.l, COLOR_BLACK);
+               }
+#endif /* NCURSES */
+       END OBJ(color0, 0)
+               obj->data.l = color0;
+               set_current_text_color(obj->data.l);
+       END OBJ(color1, 0)
+               obj->data.l = color1;
+               set_current_text_color(obj->data.l);
+       END OBJ(color2, 0)
+               obj->data.l = color2;
+               set_current_text_color(obj->data.l);
+       END OBJ(color3, 0)
+               obj->data.l = color3;
+               set_current_text_color(obj->data.l);
+       END OBJ(color4, 0)
+               obj->data.l = color4;
+               set_current_text_color(obj->data.l);
+       END OBJ(color5, 0)
+               obj->data.l = color5;
+               set_current_text_color(obj->data.l);
+       END OBJ(color6, 0)
+               obj->data.l = color6;
+               set_current_text_color(obj->data.l);
+       END OBJ(color7, 0)
+               obj->data.l = color7;
+               set_current_text_color(obj->data.l);
+       END OBJ(color8, 0)
+               obj->data.l = color8;
+               set_current_text_color(obj->data.l);
+       END OBJ(color9, 0)
+               obj->data.l = color9;
+               set_current_text_color(obj->data.l);
+#ifdef X11
+       END OBJ(font, 0)
+               obj->data.s = scan_font(arg);
+#endif /* X11 */
+       END OBJ(conky_version, 0)
+       END OBJ(conky_build_date, 0)
+       END OBJ(conky_build_arch, 0)
+       END OBJ(downspeed, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+       END OBJ(downspeedf, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+#ifdef X11
+       END OBJ(downspeedgraph, INFO_NET)
+               char *buf = 0;
+               SIZE_DEFAULTS(graph);
+               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
+                               &obj->e, &obj->char_a, &obj->char_b);
+
+               // default to DEFAULTNETDEV
+               buf = strndup(buf ? buf : DEFAULTNETDEV, text_buffer_size);
+               obj->data.net = get_net_stat(buf, obj, free_at_crash);
+               free(buf);
+#endif /* X11 */
+       END OBJ(else, 0)
+               obj_be_ifblock_else(ifblock_opaque, obj);
+       END OBJ(endif, 0)
+               obj_be_ifblock_endif(ifblock_opaque, obj);
+       END OBJ(eval, 0)
+               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
+       END OBJ(image, 0)
+               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
+       END OBJ(exec, 0)
+               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
+       END OBJ(execp, 0)
+               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
+       END OBJ(execbar, 0)
+               SIZE_DEFAULTS(bar);
+               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
+#ifdef X11
+       END OBJ(execgauge, 0)
+               SIZE_DEFAULTS(gauge);
+               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
+       END OBJ(execgraph, 0)
+               SIZE_DEFAULTS(graph);
+               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
+#endif /* X11 */
+       END OBJ(execibar, 0)
+               int n;
+               SIZE_DEFAULTS(bar);
 
-/* quite boring functions */
-
-static inline void for_each_line(char *b, int f(char *, int))
-{
-       char *ps, *pe;
-       int special_index = 0; /* specials index */
+               if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
+                       char buf[256];
 
-       for (ps = b, pe = b; *pe; pe++) {
-               if (*pe == '\n') {
-                       *pe = '\0';
-                       special_index = f(ps, special_index);
-                       *pe = '\n';
-                       ps = pe + 1;
+                       NORM_ERR("${execibar <interval> command}");
+                       obj->type = OBJ_text;
+                       snprintf(buf, 256, "${%s}", s);
+                       obj->data.s = strndup(buf, text_buffer_size);
+               } else {
+                       obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
                }
-       }
+#ifdef X11
+       END OBJ(execigraph, 0)
+               int n;
+               SIZE_DEFAULTS(graph);
 
-       if (ps < pe) {
-               f(ps, special_index);
-       }
-}
+               if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
+                       char buf[256];
 
-void convert_escapes(char *buf)
-{
-       char *p = buf, *s = buf;
-
-       while (*s) {
-               if (*s == '\\') {
-                       s++;
-                       if (*s == 'n') {
-                               *p++ = '\n';
-                       } else if (*s == '\\') {
-                               *p++ = '\\';
-                       }
-                       s++;
+                       NORM_ERR("${execigraph <interval> command}");
+                       obj->type = OBJ_text;
+                       snprintf(buf, 256, "${%s}", s);
+                       obj->data.s = strndup(buf, text_buffer_size);
                } else {
-                       *p++ = *s++;
+                       obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
                }
-       }
-       *p = '\0';
-}
-
-/* global object list root element */
-static struct text_object global_root_object;
+       END OBJ(execigauge, 0)
+               int n;
+               SIZE_DEFAULTS(gauge);
 
-/* our own implementation of popen, the difference : the value of 'childpid'
- * will be filled with the pid of the running 'command'. This is useful if want
- * to kill it when it hangs while reading or writing to it. We have to kill it
- * because pclose will wait until the process dies by itself */
-FILE* pid_popen(const char *command, const char *mode, pid_t *child)
-{
-       int ends[2];
-       int parentend, childend;
+               if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
+                       char buf[256];
 
-       /* by running pipe after the strcmp's we make sure that we don't have to
-        * create a pipe and close the ends if mode is something illegal */
-       if(strcmp(mode, "r") == 0) {
-               if(pipe(ends) != 0) {
-                       return NULL;
+                       NORM_ERR("${execigauge <interval> command}");
+                       obj->type = OBJ_text;
+                       snprintf(buf, 256, "${%s}", s);
+                       obj->data.s = strndup(buf, text_buffer_size);
+               } else {
+                       obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
                }
-               parentend = ends[0];
-               childend = ends[1];
-       } else if(strcmp(mode, "w") == 0) {
-               if(pipe(ends) != 0) {
-                       return NULL;
+#endif /* X11 */
+       END OBJ(execi, 0)
+               int n;
+
+               if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
+                       char buf[256];
+
+                       NORM_ERR("${execi <interval> command}");
+                       obj->type = OBJ_text;
+                       snprintf(buf, 256, "${%s}", s);
+                       obj->data.s = strndup(buf, text_buffer_size);
+               } else {
+                       obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
+                       obj->data.execi.buffer = malloc(text_buffer_size);
                }
-               parentend = ends[1];
-               childend = ends[0];
-       } else {
-               return NULL;
-       }
-       *child = fork();
-       if(*child == -1) {
-               close(parentend);
-               close(childend);
-               return NULL;
-       } else if(*child > 0) {
-               close(childend);
-               waitpid(*child, NULL, 0);
-       } else {
-               /* don't read from both stdin and pipe or write to both stdout and pipe */
-               if(childend == ends[0]) {
-                       close(0);
+       END OBJ(execpi, 0)
+               int n;
+
+               if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
+                       char buf[256];
+
+                       NORM_ERR("${execi <interval> command}");
+                       obj->type = OBJ_text;
+                       snprintf(buf, 256, "${%s}", s);
+                       obj->data.s = strndup(buf, text_buffer_size);
                } else {
-                       close(1);
+                       obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
+                       obj->data.execi.buffer = malloc(text_buffer_size);
                }
-               dup(childend);  /* by dupping childend, the returned fd will have close-on-exec turned off */
-               execl("/bin/sh", "sh", "-c", command, (char *) NULL);
-               _exit(EXIT_FAILURE); /* child should die here, (normally execl will take care of this but it can fail) */
-       }
-       return fdopen(parentend, mode);
-}
+       END OBJ(texeci, 0)
+                       int n;
 
-void read_exec(const char *data, char *buf, const int size)
-{
-       FILE *fp;
-       pid_t childpid;
+                       if (!arg || sscanf(arg, "%f %n", &obj->data.texeci.interval, &n) <= 0) {
+                               char buf[256];
 
-       fp = pid_popen(data, "r", &childpid);
-       if(fp) {
-               int length;
+                               NORM_ERR("${texeci <interval> command}");
+                               obj->type = OBJ_text;
+                               snprintf(buf, 256, "${%s}", s);
+                               obj->data.s = strndup(buf, text_buffer_size);
+                       } else {
+                               obj->data.texeci.cmd = strndup(arg + n, text_buffer_size);
+                               obj->data.texeci.buffer = malloc(text_buffer_size);
+                       }
+                       obj->data.texeci.p_timed_thread = NULL;
+       END OBJ(pre_exec, 0)
+               obj->type = OBJ_text;
+               if (arg) {
+                       char buf[2048];
 
-               length = fread(buf, 1, size, fp);
-               pclose(fp);
-               buf[length] = '\0';
-               if (length > 0 && buf[length - 1] == '\n') {
-                       buf[length - 1] = '\0';
+                       do_read_exec(arg, buf, sizeof(buf));
+                       obj->data.s = strndup(buf, text_buffer_size);
+               } else {
+                       obj->data.s = strndup("", text_buffer_size);
+               }
+       END OBJ(fs_bar, INFO_FS)
+               SIZE_DEFAULTS(bar);
+               arg = scan_bar(arg, &obj->data.fsbar.w, &obj->data.fsbar.h);
+               if (arg) {
+                       while (isspace(*arg)) {
+                               arg++;
+                       }
+                       if (*arg == '\0') {
+                               arg = "/";
+                       }
+               } else {
+                       arg = "/";
+               }
+               obj->data.fsbar.fs = prepare_fs_stat(arg);
+       END OBJ(fs_bar_free, INFO_FS)
+               SIZE_DEFAULTS(bar);
+               arg = scan_bar(arg, &obj->data.fsbar.w, &obj->data.fsbar.h);
+               if (arg) {
+                       while (isspace(*arg)) {
+                               arg++;
+                       }
+                       if (*arg == '\0') {
+                               arg = "/";
+                       }
+               } else {
+                       arg = "/";
+               }
+
+               obj->data.fsbar.fs = prepare_fs_stat(arg);
+       END OBJ(fs_free, INFO_FS)
+               if (!arg) {
+                       arg = "/";
+               }
+               obj->data.fs = prepare_fs_stat(arg);
+       END OBJ(fs_used_perc, INFO_FS)
+               if (!arg) {
+                       arg = "/";
+               }
+               obj->data.fs = prepare_fs_stat(arg);
+       END OBJ(fs_free_perc, INFO_FS)
+               if (!arg) {
+                       arg = "/";
+               }
+               obj->data.fs = prepare_fs_stat(arg);
+       END OBJ(fs_size, INFO_FS)
+               if (!arg) {
+                       arg = "/";
+               }
+               obj->data.fs = prepare_fs_stat(arg);
+       END OBJ(fs_type, INFO_FS)
+               if (!arg) {
+                       arg = "/";
+               }
+               obj->data.fs = prepare_fs_stat(arg);
+       END OBJ(fs_used, INFO_FS)
+               if (!arg) {
+                       arg = "/";
+               }
+               obj->data.fs = prepare_fs_stat(arg);
+       END OBJ(hr, 0)
+               obj->data.i = arg ? atoi(arg) : 1;
+       END OBJ(nameserver, INFO_DNS)
+               obj->data.i = arg ? atoi(arg) : 0;
+       END OBJ(offset, 0)
+               obj->data.i = arg ? atoi(arg) : 1;
+       END OBJ(voffset, 0)
+               obj->data.i = arg ? atoi(arg) : 1;
+       END OBJ(goto, 0)
+
+               if (!arg) {
+                       NORM_ERR("goto needs arguments");
+                       obj->type = OBJ_text;
+                       obj->data.s = strndup("${goto}", text_buffer_size);
+                       return NULL;
                }
-       } else {
-               buf[0] = '\0';
-       }
-}
 
-void *threaded_exec(void *, void *) __attribute__((noreturn));
+               obj->data.i = atoi(arg);
 
-void *threaded_exec(void *arg1, void *arg2)
-{
-       char *buff, *p2;
-       struct text_object *obj = (struct text_object *)arg2;
-       conky_context *ctx = (conky_context *)arg1;
-
-       while (1) {
-               buff = malloc(text_buffer_size);
-               read_exec(obj->data.texeci.cmd, buff,
-                       ctx->text_buffer_size);
-               p2 = buff;
-               while (*p2) {
-                       if (*p2 == '\001') {
-                               *p2 = ' ';
+       END OBJ(tab, 0)
+               int a = 10, b = 0;
+
+               if (arg) {
+                       if (sscanf(arg, "%d %d", &a, &b) != 2) {
+                               sscanf(arg, "%d", &b);
                        }
-                       p2++;
                }
-               timed_thread_lock(obj->data.texeci.p_timed_thread);
-               strncpy(obj->data.texeci.buffer, buff, text_buffer_size);
-               timed_thread_unlock(obj->data.texeci.p_timed_thread);
-               free(buff);
-               if (timed_thread_test(obj->data.texeci.p_timed_thread, 0)) {
-                       timed_thread_exit(obj->data.texeci.p_timed_thread);
+               if (a <= 0) {
+                       a = 1;
                }
-       }
-       /* never reached */
-}
+               obj->data.pair.a = a;
+               obj->data.pair.b = b;
 
-static long current_text_color;
+#ifdef __linux__
+       END OBJ(i2c, INFO_SYSFS)
+               char buf1[64], buf2[64];
+               float factor, offset;
+               int n, found = 0;
 
-void set_current_text_color(long colour)
-{
-       current_text_color = colour;
-}
+               if (!arg) {
+                       NORM_ERR("i2c needs arguments");
+                       obj->type = OBJ_text;
+                       // obj->data.s = strndup("${i2c}", text_buffer_size);
+                       return NULL;
+               }
 
-long get_current_text_color(void)
-{
-       return current_text_color;
-}
+#define HWMON_RESET() {\
+               buf1[0] = 0; \
+               factor = 1.0; \
+               offset = 0.0; }
 
-//adds newstring to to the tree unless you can already see it when travelling back.
-//if it's possible to attach it then it returns a pointer to the leaf, else it returns NULL
-struct conftree* conftree_add(struct conftree* previous, const char* newstring) {
-       struct conftree* node;
-       struct conftree* node2;
+               if (sscanf(arg, "%63s %d %f %f", buf2, &n, &factor, &offset) == 4) found = 1; else HWMON_RESET();
+               if (!found && sscanf(arg, "%63s %63s %d %f %f", buf1, buf2, &n, &factor, &offset) == 5) found = 1; else if (!found) HWMON_RESET();
+               if (!found && sscanf(arg, "%63s %63s %d", buf1, buf2, &n) == 3) found = 1; else if (!found) HWMON_RESET();
+               if (!found && sscanf(arg, "%63s %d", buf2, &n) == 2) found = 1; else if (!found) HWMON_RESET();
 
-       for(node = previous; node != NULL; node = node->back) {
-               if(strcmp(node->string, newstring) == 0) {
+               if (!found) {
+                       NORM_ERR("i2c failed to parse arguments");
+                       obj->type = OBJ_text;
                        return NULL;
                }
-       }
-       node = malloc(sizeof(struct conftree));
-       if (previous != NULL) {
-               if(previous->vert_next == NULL) {
-                       previous->vert_next = node;
-               } else {
-                       for(node2 = previous->vert_next; node2->horz_next != NULL; node2 = node2->horz_next ) { }
-                       node2->horz_next = node;
+               DBGP("parsed i2c args: '%s' '%s' %d %f %f\n", buf1, buf2, n, factor, offset);
+               obj->data.sysfs.fd = open_i2c_sensor((*buf1) ? buf1 : 0, buf2, n,
+                               &obj->data.sysfs.arg, obj->data.sysfs.devtype);
+               strncpy(obj->data.sysfs.type, buf2, 63);
+               obj->data.sysfs.factor = factor;
+               obj->data.sysfs.offset = offset;
+
+       END OBJ(platform, INFO_SYSFS)
+               char buf1[64], buf2[64];
+               float factor, offset;
+               int n, found = 0;
+
+               if (!arg) {
+                       NORM_ERR("platform needs arguments");
+                       obj->type = OBJ_text;
+                       return NULL;
                }
-       }
-       node->string = strdup(newstring);
-       node->horz_next = NULL;
-       node->vert_next = NULL;
-       node->back = previous;
-       return node;
-}
 
-void conftree_empty(struct conftree* tree) {
-       if(tree) {
-               conftree_empty(tree->horz_next);
-               conftree_empty(tree->vert_next);
-               free(tree->string);
-               free(tree);
-       }
-}
+               if (sscanf(arg, "%63s %d %f %f", buf2, &n, &factor, &offset) == 4) found = 1; else HWMON_RESET();
+               if (!found && sscanf(arg, "%63s %63s %d %f %f", buf1, buf2, &n, &factor, &offset) == 5) found = 1; else if (!found) HWMON_RESET();
+               if (!found && sscanf(arg, "%63s %63s %d", buf1, buf2, &n) == 3) found = 1; else if (!found) HWMON_RESET();
+               if (!found && sscanf(arg, "%63s %d", buf2, &n) == 2) found = 1; else if (!found) HWMON_RESET();
 
-struct conftree *currentconffile;
+               if (!found) {
+                       NORM_ERR("platform failed to parse arguments");
+                       obj->type = OBJ_text;
+                       return NULL;
+               }
+               DBGP("parsed platform args: '%s' '%s' %d %f %f", buf1, buf2, n, factor, offset);
+               obj->data.sysfs.fd = open_platform_sensor((*buf1) ? buf1 : 0, buf2, n,
+                               &obj->data.sysfs.arg, obj->data.sysfs.devtype);
+               strncpy(obj->data.sysfs.type, buf2, 63);
+               obj->data.sysfs.factor = factor;
+               obj->data.sysfs.offset = offset;
+
+       END OBJ(hwmon, INFO_SYSFS)
+               char buf1[64], buf2[64];
+               float factor, offset;
+               int n, found = 0;
+
+               if (!arg) {
+                       NORM_ERR("hwmon needs argumanets");
+                       obj->type = OBJ_text;
+                       return NULL;
+               }
 
-void extract_variable_text(conky_context *ctx, const char *p)
-{
-       free_text_objects(&global_root_object, 0);
-       if (ctx->tmpstring1) {
-               free(ctx->tmpstring1);
-               ctx->tmpstring1 = 0;
-       }
-       if (ctx->tmpstring2) {
-               free(ctx->tmpstring2);
-               ctx->tmpstring2 = 0;
-       }
-       if (ctx->text_buffer) {
-               free(ctx->text_buffer);
-               ctx->text_buffer = 0;
-       }
+               if (sscanf(arg, "%63s %d %f %f", buf2, &n, &factor, &offset) == 4) found = 1; else HWMON_RESET();
+               if (!found && sscanf(arg, "%63s %63s %d %f %f", buf1, buf2, &n, &factor, &offset) == 5) found = 1; else if (!found) HWMON_RESET();
+               if (!found && sscanf(arg, "%63s %63s %d", buf1, buf2, &n) == 3) found = 1; else if (!found) HWMON_RESET();
+               if (!found && sscanf(arg, "%63s %d", buf2, &n) == 2) found = 1; else if (!found) HWMON_RESET();
 
-       extract_variable_text_internal(ctx, &global_root_object, p);
-}
+#undef HWMON_RESET
 
-void parse_conky_vars(ctx, struct text_object *root, const char *txt, char *p)
-{
-       extract_variable_text_internal(ctx, root, txt);
-       generate_text_internal(ctx, p, max_user_text, *root);
-}
+               if (!found) {
+                       NORM_ERR("hwmon failed to parse arguments");
+                       obj->type = OBJ_text;
+                       return NULL;
+               }
+               DBGP("parsed hwmon args: '%s' '%s' %d %f %f\n", buf1, buf2, n, factor, offset);
+               obj->data.sysfs.fd = open_hwmon_sensor((*buf1) ? buf1 : 0, buf2, n,
+                               &obj->data.sysfs.arg, obj->data.sysfs.devtype);
+               strncpy(obj->data.sysfs.type, buf2, 63);
+               obj->data.sysfs.factor = factor;
+               obj->data.sysfs.offset = offset;
+
+#endif /* !__OpenBSD__ */
+
+       END
+       /* we have four different types of top (top, top_mem, top_time and top_io). To
+        * avoid having almost-same code four times, we have this special
+        * handler. */
+       if (strncmp(s, "top", 3) == EQUAL) {
+               if (!parse_top_args(s, arg, obj)) {
+                       return NULL;
+               }
+       } else OBJ(addr, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+#if defined(__linux__)
+       END OBJ(addrs, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+#endif /* __linux__ */
+       END OBJ(tail, 0)
+               init_tailhead("tail", arg, obj, free_at_crash);
+       END OBJ(head, 0)
+               init_tailhead("head", arg, obj, free_at_crash);
+       END OBJ(lines, 0)
+               if (arg) {
+                       obj->data.s = strndup(arg, text_buffer_size);
+               }else{
+                       CRIT_ERR(obj, free_at_crash, "lines needs a argument");
+               }
+       END OBJ(words, 0)
+               if (arg) {
+                       obj->data.s = strndup(arg, text_buffer_size);
+               }else{
+                       CRIT_ERR(obj, free_at_crash, "words needs a argument");
+               }
+       END OBJ(loadavg, INFO_LOADAVG)
+               int a = 1, b = 2, c = 3, r = 3;
+
+               if (arg) {
+                       r = sscanf(arg, "%d %d %d", &a, &b, &c);
+                       if (r >= 3 && (c < 1 || c > 3)) {
+                               r--;
+                       }
+                       if (r >= 2 && (b < 1 || b > 3)) {
+                               r--, b = c;
+                       }
+                       if (r >= 1 && (a < 1 || a > 3)) {
+                               r--, a = b, b = c;
+                       }
+               }
+               obj->data.loadavg[0] = (r >= 1) ? (unsigned char) a : 0;
+               obj->data.loadavg[1] = (r >= 2) ? (unsigned char) b : 0;
+               obj->data.loadavg[2] = (r >= 3) ? (unsigned char) c : 0;
+       END OBJ_IF(if_empty, 0)
+               if (!arg) {
+                       NORM_ERR("if_empty needs an argument");
+                       obj->data.ifblock.s = 0;
+               } else {
+                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
+                       obj->sub = malloc(sizeof(struct text_object));
+                       extract_variable_text_internal(obj->sub,
+                                                      obj->data.ifblock.s);
+               }
+       END OBJ_IF(if_match, 0)
+               if (!arg) {
+                       NORM_ERR("if_match needs arguments");
+                       obj->data.ifblock.s = 0;
+               } else {
+                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
+                       obj->sub = malloc(sizeof(struct text_object));
+                       extract_variable_text_internal(obj->sub,
+                                                      obj->data.ifblock.s);
+               }
+       END OBJ_IF(if_existing, 0)
+               if (!arg) {
+                       NORM_ERR("if_existing needs an argument or two");
+                       obj->data.ifblock.s = NULL;
+                       obj->data.ifblock.str = NULL;
+               } else {
+                       char buf1[256], buf2[256];
+                       int r = sscanf(arg, "%255s %255[^\n]", buf1, buf2);
 
-static inline struct mail_s *ensure_mail_thread(struct text_object *obj,
-               void *thread(void *), const char *text)
-{
-       if (obj->char_b && ctx->info.mail) {
-               /* this means we use ctx->info */
-               if (!ctx->info.mail->p_timed_thread) {
-                       ctx->info.mail->p_timed_thread =
-                               timed_thread_create(thread,
-                                               (void *) ctx->info.mail, ctx->info.mail->interval * 1000000);
-                       if (!ctx->info.mail->p_timed_thread) {
-                               NORM_ERR("Error creating %s timed thread", text);
-                       }
-                       timed_thread_register(ctx->info.mail->p_timed_thread,
-                                       &ctx->info.mail->p_timed_thread);
-                       if (timed_thread_run(ctx->info.mail->p_timed_thread)) {
-                               NORM_ERR("Error running %s timed thread", text);
+                       if (r == 1) {
+                               obj->data.ifblock.s = strndup(buf1, text_buffer_size);
+                               obj->data.ifblock.str = NULL;
+                       } else {
+                               obj->data.ifblock.s = strndup(buf1, text_buffer_size);
+                               obj->data.ifblock.str = strndup(buf2, text_buffer_size);
                        }
                }
-               return ctx->info.mail;
-       } else if (obj->data.mail) {
-               // this means we use obj
-               if (!obj->data.mail->p_timed_thread) {
-                       obj->data.mail->p_timed_thread =
-                               timed_thread_create(thread,
-                                               (void *) obj->data.mail,
-                                               obj->data.mail->interval * 1000000);
-                       if (!obj->data.mail->p_timed_thread) {
-                               NORM_ERR("Error creating %s timed thread", text);
-                       }
-                       timed_thread_register(obj->data.mail->p_timed_thread,
-                                       &obj->data.mail->p_timed_thread);
-                       if (timed_thread_run(obj->data.mail->p_timed_thread)) {
-                               NORM_ERR("Error running %s timed thread", text);
-                       }
+               DBGP("if_existing: '%s' '%s'", obj->data.ifblock.s, obj->data.ifblock.str);
+       END OBJ_IF(if_mounted, 0)
+               if (!arg) {
+                       NORM_ERR("if_mounted needs an argument");
+                       obj->data.ifblock.s = 0;
+               } else {
+                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
                }
-               return obj->data.mail;
-       } else if (!obj->a) {
-               // something is wrong, warn once then stop
-               NORM_ERR("There's a problem with your mail settings.  "
-                               "Check that the global mail settings are properly defined"
-                               " (line %li).", obj->line);
-               obj->a++;
-       }
-       return NULL;
-}
+#ifdef __linux__
+       END OBJ_IF(if_running, INFO_TOP)
+               if (arg) {
+                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
+#else
+       END OBJ_IF(if_running, 0)
+               if (arg) {
+                       char buf[256];
 
-static void generate_text(void)
-{
-       struct information *cur = &ctx->info;
-       char *p;
+                       snprintf(buf, 256, "pidof %s >/dev/null", arg);
+                       obj->data.ifblock.s = strndup(buf, text_buffer_size);
+#endif
+               } else {
+                       NORM_ERR("if_running needs an argument");
+                       obj->data.ifblock.s = 0;
+               }
+       END OBJ(kernel, 0)
+       END OBJ(machine, 0)
+       END OBJ(mails, 0)
+               float n1;
+               char mbox[256], dst[256];
+
+               if (!arg) {
+                       n1 = 9.5;
+                       /* Kapil: Changed from MAIL_FILE to
+                          current_mail_spool since the latter
+                          is a copy of the former if undefined
+                          but the latter should take precedence
+                          if defined */
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
+               } else {
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
+               }
 
-       special_count = 0;
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(new_mails, 0)
+               float n1;
+               char mbox[256], dst[256];
 
-       /* update ctx->info */
+               if (!arg) {
+                       n1 = 9.5;
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
+               } else {
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
+               }
 
-       ctx->current_update_time = get_time();
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(seen_mails, 0)
+               float n1;
+               char mbox[256], dst[256];
 
-       update_stuff();
+               if (!arg) {
+                       n1 = 9.5;
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
+               } else {
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
+               }
 
-       /* add things to the buffer */
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(unseen_mails, 0)
+               float n1;
+               char mbox[256], dst[256];
 
-       /* generate text */
+               if (!arg) {
+                       n1 = 9.5;
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
+               } else {
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
+               }
 
-       p = ctx->text_buffer;
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(flagged_mails, 0)
+               float n1;
+               char mbox[256], dst[256];
 
-       generate_text_internal(ctx, p, max_user_text, global_root_object);
+               if (!arg) {
+                       n1 = 9.5;
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
+               } else {
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
+               }
 
-       if (stuff_in_uppercase) {
-               char *tmp_p;
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(unflagged_mails, 0)
+               float n1;
+               char mbox[256], dst[256];
 
-               tmp_p = ctx->text_buffer;
-               while (*tmp_p) {
-                       *tmp_p = toupper(*tmp_p);
-                       tmp_p++;
+               if (!arg) {
+                       n1 = 9.5;
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
+               } else {
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
                }
-       }
 
-       ctx->next_update_time += ctx->update_interval;
-       if (ctx->next_update_time < get_time()) {
-               ctx->next_update_time = get_time() + ctx->update_interval;
-       } else if (ctx->next_update_time > get_time() + ctx->update_interval) {
-               ctx->next_update_time = get_time() + ctx->update_interval;
-       }
-       ctx->last_update_time = ctx->current_update_time;
-       ctx->total_updates++;
-}
-
-void set_update_interval(conky_context *ctx, double interval)
-{
-       ctx->update_interval = interval;
-       ctx->update_interval_old = interval;
-}
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(forwarded_mails, 0)
+               float n1;
+               char mbox[256], dst[256];
 
-static inline int get_string_width(const char *s)
-{
-#ifdef X11
-       if (ctx->output_methods & TO_X) {
-               return *s ? calc_text_width(s, strlen(s)) : 0;
-       }
-#endif /* X11 */
-       return strlen(s);
-}
+               if (!arg) {
+                       n1 = 9.5;
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
+               } else {
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
+               }
 
-#ifdef X11
-static int get_string_width_special(char *s, int special_index)
-{
-       char *p, *final;
-       int idx = 1;
-       int width = 0;
-       long i;
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(unforwarded_mails, 0)
+               float n1;
+               char mbox[256], dst[256];
 
-       if ((ctx->output_methods & TO_X) == 0) {
-               return (s) ? strlen(s) : 0;
-       }
+               if (!arg) {
+                       n1 = 9.5;
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
+               } else {
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
+               }
 
-       if (!s) {
-               return 0;
-       }
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(replied_mails, 0)
+               float n1;
+               char mbox[256], dst[256];
 
-       p = strndup(s, text_buffer_size);
-       final = p;
-
-       while (*p) {
-               if (*p == SPECIAL_CHAR) {
-                       /* shift everything over by 1 so that the special char
-                        * doesn't mess up the size calculation */
-                       for (i = 0; i < (long)strlen(p); i++) {
-                               *(p + i) = *(p + i + 1);
-                       }
-                       if (specials[special_index + idx].type == GRAPH
-                                       || specials[special_index + idx].type == GAUGE
-                                       || specials[special_index + idx].type == BAR) {
-                               width += specials[special_index + idx].width;
-                       }
-                       idx++;
-               } else if (*p == SECRIT_MULTILINE_CHAR) {
-                       *p = 0;
-                       break;
+               if (!arg) {
+                       n1 = 9.5;
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
                } else {
-                       p++;
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
                }
-       }
-       if (strlen(final) > 1) {
-               width += calc_text_width(final, strlen(final));
-       }
-       free(final);
-       return width;
-}
 
-static int text_size_updater(char *s, int special_index);
-
-void update_text_area(conky_context *ctx)
-{
-       int x = 0, y = 0;
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(unreplied_mails, 0)
+               float n1;
+               char mbox[256], dst[256];
 
-       if ((ctx->output_methods & TO_X) == 0)
-               return;
-       /* update text size if it isn't fixed */
-#ifdef OWN_WINDOW
-       if (!fixed_size)
-#endif
-       {
-               text_width = minimum_width;
-               text_height = 0;
-               last_font_height = font_height();
-               for_each_line(ctx->text_buffer, text_size_updater);
-               text_width += 1;
-               if (text_height < minimum_height) {
-                       text_height = minimum_height;
-               }
-               if (text_width > maximum_width && maximum_width > 0) {
-                       text_width = maximum_width;
+               if (!arg) {
+                       n1 = 9.5;
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
+               } else {
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
                }
-       }
-
-       /* get text position on workarea */
-       switch (text_alignment) {
-               case TOP_LEFT:
-                       x = gap_x;
-                       y = gap_y;
-                       break;
-
-               case TOP_RIGHT:
-                       x = workarea[2] - text_width - gap_x;
-                       y = gap_y;
-                       break;
-
-               case TOP_MIDDLE:
-                       x = workarea[2] / 2 - text_width / 2 - gap_x;
-                       y = gap_y;
-                       break;
-
-               default:
-               case BOTTOM_LEFT:
-                       x = gap_x;
-                       y = workarea[3] - text_height - gap_y;
-                       break;
-
-               case BOTTOM_RIGHT:
-                       x = workarea[2] - text_width - gap_x;
-                       y = workarea[3] - text_height - gap_y;
-                       break;
-
-               case BOTTOM_MIDDLE:
-                       x = workarea[2] / 2 - text_width / 2 - gap_x;
-                       y = workarea[3] - text_height - gap_y;
-                       break;
-
-               case MIDDLE_LEFT:
-                       x = gap_x;
-                       y = workarea[3] / 2 - text_height / 2 - gap_y;
-                       break;
 
-               case MIDDLE_RIGHT:
-                       x = workarea[2] - text_width - gap_x;
-                       y = workarea[3] / 2 - text_height / 2 - gap_y;
-                       break;
-
-#ifdef OWN_WINDOW
-               case NONE:      // Let the WM manage the window
-                       x = window.x;
-                       y = window.y;
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(draft_mails, 0)
+               float n1;
+               char mbox[256], dst[256];
 
-                       fixed_pos = 1;
-                       fixed_size = 1;
-                       break;
-#endif
-       }
-#ifdef OWN_WINDOW
-
-       if (own_window && !fixed_pos) {
-               x += workarea[0];
-               y += workarea[1];
-               text_start_x = window.border_inner_margin + window.border_outer_margin + window.border_width;
-               text_start_y = window.border_inner_margin + window.border_outer_margin + window.border_width;
-               window.x = x - window.border_inner_margin - window.border_outer_margin - window.border_width;
-               window.y = y - window.border_inner_margin - window.border_outer_margin - window.border_width;
-       } else
-#endif
-       {
-               /* If window size doesn't match to workarea's size,
-                * then window probably includes panels (gnome).
-                * Blah, doesn't work on KDE. */
-               if (workarea[2] != window.width || workarea[3] != window.height) {
-                       y += workarea[1];
-                       x += workarea[0];
+               if (!arg) {
+                       n1 = 9.5;
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
+               } else {
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
                }
 
-               text_start_x = x;
-               text_start_y = y;
-       }
-#ifdef HAVE_LUA
-       /* update lua window globals */
-       llua_update_window_table(text_start_x, text_start_y, text_width, text_height);
-#endif /* HAVE_LUA */
-}
-
-/* drawing stuff */
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(trashed_mails, 0)
+               float n1;
+               char mbox[256], dst[256];
 
-static int cur_x, cur_y;       /* current x and y for drawing */
+               if (!arg) {
+                       n1 = 9.5;
+                       strncpy(mbox, current_mail_spool, sizeof(mbox));
+               } else {
+                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
+                               n1 = 9.5;
+                               strncpy(mbox, arg, sizeof(mbox));
+                       }
+               }
+
+               variable_substitute(mbox, dst, sizeof(dst));
+               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
+               obj->data.local_mail.interval = n1;
+       END OBJ(mboxscan, 0)
+               obj->data.mboxscan.args = (char *) malloc(text_buffer_size);
+               obj->data.mboxscan.output = (char *) malloc(text_buffer_size);
+               /* if '1' (in mboxscan.c) then there was SIGUSR1, hmm */
+               obj->data.mboxscan.output[0] = 1;
+               strncpy(obj->data.mboxscan.args, arg, text_buffer_size);
+       END OBJ(mem, INFO_MEM)
+       END OBJ(memeasyfree, INFO_MEM)
+       END OBJ(memfree, INFO_MEM)
+       END OBJ(memmax, INFO_MEM)
+       END OBJ(memperc, INFO_MEM)
+#ifdef X11
+       END OBJ(memgauge, INFO_MEM)
+               SIZE_DEFAULTS(gauge);
+               scan_gauge(arg, &obj->data.pair.a, &obj->data.pair.b);
+#endif /* X11*/
+       END OBJ(membar, INFO_MEM)
+               SIZE_DEFAULTS(bar);
+               scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
+#ifdef X11
+       END OBJ(memgraph, INFO_MEM)
+               char *buf = 0;
+               SIZE_DEFAULTS(graph);
+               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
+                               &obj->e, &obj->char_a, &obj->char_b);
+
+               if (buf) free(buf);
+#endif /* X11*/
+       END OBJ(mixer, INFO_MIXER)
+               obj->data.l = mixer_init(arg);
+       END OBJ(mixerl, INFO_MIXER)
+               obj->data.l = mixer_init(arg);
+       END OBJ(mixerr, INFO_MIXER)
+               obj->data.l = mixer_init(arg);
+#ifdef X11
+       END OBJ(mixerbar, INFO_MIXER)
+               SIZE_DEFAULTS(bar);
+               scan_mixer_bar(arg, &obj->data.mixerbar.l, &obj->data.mixerbar.w,
+                       &obj->data.mixerbar.h);
+       END OBJ(mixerlbar, INFO_MIXER)
+               SIZE_DEFAULTS(bar);
+               scan_mixer_bar(arg, &obj->data.mixerbar.l, &obj->data.mixerbar.w,
+                       &obj->data.mixerbar.h);
+       END OBJ(mixerrbar, INFO_MIXER)
+               SIZE_DEFAULTS(bar);
+               scan_mixer_bar(arg, &obj->data.mixerbar.l, &obj->data.mixerbar.w,
+                       &obj->data.mixerbar.h);
 #endif
-//draw_mode also without X11 because we only need to print to stdout with FG
-static int draw_mode;          /* FG, BG or OUTLINE */
+       END OBJ_IF(if_mixer_mute, INFO_MIXER)
+               obj->data.ifblock.i = mixer_init(arg);
 #ifdef X11
-static long current_color;
-
-static int text_size_updater(char *s, int special_index)
-{
-       int w = 0;
-       char *p;
+       END OBJ(monitor, INFO_X11)
+       END OBJ(monitor_number, INFO_X11)
+       END OBJ(desktop, INFO_X11)
+       END OBJ(desktop_number, INFO_X11)
+       END OBJ(desktop_name, INFO_X11)
+#endif
+       END OBJ(nodename, 0)
+       END OBJ(processes, INFO_PROCS)
+       END OBJ(running_processes, INFO_RUN_PROCS)
+       END OBJ(shadecolor, 0)
+#ifdef X11
+               obj->data.l = arg ? get_x11_color(arg) : default_bg_color;
+#endif /* X11 */
+       END OBJ(outlinecolor, 0)
+#ifdef X11
+               obj->data.l = arg ? get_x11_color(arg) : default_out_color;
+#endif /* X11 */
+       END OBJ(stippled_hr, 0)
+#ifdef X11
+               int a = get_stippled_borders(), b = 1;
 
-       if ((ctx->output_methods & TO_X) == 0)
-               return 0;
-       /* get string widths and skip specials */
-       p = s;
-       while (*p) {
-               if (*p == SPECIAL_CHAR) {
-                       *p = '\0';
-                       w += get_string_width(s);
-                       *p = SPECIAL_CHAR;
-
-                       if (specials[special_index].type == BAR
-                                       || specials[special_index].type == GAUGE
-                                       || specials[special_index].type == GRAPH) {
-                               w += specials[special_index].width;
-                               if (specials[special_index].height > last_font_height) {
-                                       last_font_height = specials[special_index].height;
-                                       last_font_height += font_height();
-                               }
-                       } else if (specials[special_index].type == OFFSET) {
-                               if (specials[special_index].arg > 0) {
-                                       w += specials[special_index].arg;
-                               }
-                       } else if (specials[special_index].type == VOFFSET) {
-                               last_font_height += specials[special_index].arg;
-                       } else if (specials[special_index].type == GOTO) {
-                               if (specials[special_index].arg > cur_x) {
-                                       w = (int) specials[special_index].arg;
-                               }
-                       } else if (specials[special_index].type == TAB) {
-                               int start = specials[special_index].arg;
-                               int step = specials[special_index].width;
+               if (arg) {
+                       if (sscanf(arg, "%d %d", &a, &b) != 2) {
+                               sscanf(arg, "%d", &b);
+                       }
+               }
+               if (a <= 0) {
+                       a = 1;
+               }
+               obj->data.pair.a = a;
+               obj->data.pair.b = b;
+#endif /* X11 */
+       END OBJ(swap, INFO_MEM)
+       END OBJ(swapfree, INFO_MEM)
+       END OBJ(swapmax, INFO_MEM)
+       END OBJ(swapperc, INFO_MEM)
+       END OBJ(swapbar, INFO_MEM)
+               SIZE_DEFAULTS(bar);
+               scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
+       END OBJ(sysname, 0)
+       END OBJ(time, 0)
+               obj->data.s = strndup(arg ? arg : "%F %T", text_buffer_size);
+       END OBJ(utime, 0)
+               obj->data.s = strndup(arg ? arg : "%F %T", text_buffer_size);
+       END OBJ(tztime, 0)
+               char buf1[256], buf2[256], *fmt, *tz;
+
+               fmt = tz = NULL;
+               if (arg) {
+                       int nArgs = sscanf(arg, "%255s %255[^\n]", buf1, buf2);
+
+                       switch (nArgs) {
+                               case 2:
+                                       tz = buf1;
+                               case 1:
+                                       fmt = buf2;
+                       }
+               }
+
+               obj->data.tztime.fmt = strndup(fmt ? fmt : "%F %T", text_buffer_size);
+               obj->data.tztime.tz = tz ? strndup(tz, text_buffer_size) : NULL;
+#ifdef HAVE_ICONV
+       END OBJ(iconv_start, 0)
+               if (is_iconv_converting()) {
+                       CRIT_ERR(obj, free_at_crash, "You must stop your last iconv conversion before "
+                               "starting another");
+               }
+               if (arg) {
+                       char iconv_from[ICONV_CODEPAGE_LENGTH];
+                       char iconv_to[ICONV_CODEPAGE_LENGTH];
+
+                       if (sscanf(arg, "%s %s", iconv_from, iconv_to) != 2) {
+                               CRIT_ERR(obj, free_at_crash, "Invalid arguments for iconv_start");
+                       } else {
+                               iconv_t new_iconv;
 
-                               if (!step || step < 0) {
-                                       step = 10;
-                               }
-                               w += step - (cur_x - text_start_x - start) % step;
-                       } else if (specials[special_index].type == FONT) {
-                               ctx->selected_font = specials[special_index].font_added;
-                               if (font_height() > last_font_height) {
-                                       last_font_height = font_height();
+                               new_iconv = iconv_open(iconv_to, iconv_from);
+                               if (new_iconv == (iconv_t) (-1)) {
+                                       NORM_ERR("Can't convert from %s to %s.", iconv_from, iconv_to);
+                               } else {
+                                       obj->a = register_iconv(&new_iconv);
+                                       set_iconv_converting(1);
                                }
                        }
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "Iconv requires arguments");
+               }
+       END OBJ(iconv_stop, 0)
+               set_iconv_converting(0);
 
-                       special_index++;
-                       s = p + 1;
-               } else if (*p == SECRIT_MULTILINE_CHAR) {
-                       int lw;
-                       *p = '\0';
-                       lw = get_string_width(s);
-                       *p = SECRIT_MULTILINE_CHAR;
-                       s = p + 1;
-                       w = lw > w ? lw : w;
-                       text_height += last_font_height;
+#endif
+       END OBJ(totaldown, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+       END OBJ(totalup, INFO_NET)
+               obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+       END OBJ(updates, 0)
+       END OBJ_IF(if_updatenr, 0)
+               obj->data.ifblock.i = arg ? atoi(arg) : 0;
+               if(obj->data.ifblock.i == 0) CRIT_ERR(obj, free_at_crash, "if_updatenr needs a number above 0 as argument");
+               set_updatereset(obj->data.ifblock.i > get_updatereset() ? obj->data.ifblock.i : get_updatereset());
+       END OBJ(alignr, 0)
+               obj->data.i = arg ? atoi(arg) : 0;
+       END OBJ(alignc, 0)
+               obj->data.i = arg ? atoi(arg) : 0;
+       END OBJ(upspeed, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
+               }
+       END OBJ(upspeedf, INFO_NET)
+               if (arg) {
+                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
+               } else {
+                       // default to DEFAULTNETDEV
+                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
+                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
+                       free(buf);
                }
-               p++;
-       }
-       w += get_string_width(s);
-       if (w > text_width) {
-               text_width = w;
-       }
-       if (text_width > maximum_width && maximum_width) {
-               text_width = maximum_width;
-       }
 
-       text_height += last_font_height;
-       last_font_height = font_height();
-       return special_index;
-}
+#ifdef X11
+       END OBJ(upspeedgraph, INFO_NET)
+               char *buf = 0;
+               SIZE_DEFAULTS(graph);
+               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
+                               &obj->e, &obj->char_a, &obj->char_b);
+
+               // default to DEFAULTNETDEV
+               buf = strndup(buf ? buf : DEFAULTNETDEV, text_buffer_size);
+               obj->data.net = get_net_stat(buf, obj, free_at_crash);
+               free(buf);
+#endif
+       END OBJ(uptime_short, INFO_UPTIME)
+       END OBJ(uptime, INFO_UPTIME)
+       END OBJ(user_names, INFO_USERS)
+       END OBJ(user_times, INFO_USERS)
+       END OBJ(user_terms, INFO_USERS)
+       END OBJ(user_number, INFO_USERS)
+#if defined(__linux__)
+       END OBJ(gw_iface, INFO_GW)
+       END OBJ(gw_ip, INFO_GW)
+#endif /* !__linux__ */
+#ifndef __OpenBSD__
+       END OBJ(adt746xcpu, 0)
+       END OBJ(adt746xfan, 0)
+#endif /* !__OpenBSD__ */
+#if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) \
+               || defined(__OpenBSD__)) && (defined(i386) || defined(__i386__))
+       END OBJ(apm_adapter, 0)
+       END OBJ(apm_battery_life, 0)
+       END OBJ(apm_battery_time, 0)
+#endif /* __FreeBSD__ */
+       END OBJ(imap_unseen, 0)
+               if (arg) {
+                       // proccss
+                       obj->data.mail = parse_mail_args(IMAP_TYPE, arg);
+                       obj->char_b = 0;
+               } else {
+                       obj->char_b = 1;
+               }
+       END OBJ(imap_messages, 0)
+               if (arg) {
+                       // proccss
+                       obj->data.mail = parse_mail_args(IMAP_TYPE, arg);
+                       obj->char_b = 0;
+               } else {
+                       obj->char_b = 1;
+               }
+       END OBJ(pop3_unseen, 0)
+               if (arg) {
+                       // proccss
+                       obj->data.mail = parse_mail_args(POP3_TYPE, arg);
+                       obj->char_b = 0;
+               } else {
+                       obj->char_b = 1;
+               }
+       END OBJ(pop3_used, 0)
+               if (arg) {
+                       // proccss
+                       obj->data.mail = parse_mail_args(POP3_TYPE, arg);
+                       obj->char_b = 0;
+               } else {
+                       obj->char_b = 1;
+               }
+#ifdef IBM
+       END OBJ(smapi, 0)
+               if (arg)
+                       obj->data.s = strndup(arg, text_buffer_size);
+               else
+                       NORM_ERR("smapi needs an argument");
+       END OBJ_IF(if_smapi_bat_installed, 0)
+               if (!arg) {
+                       NORM_ERR("if_smapi_bat_installed needs an argument");
+                       obj->data.ifblock.s = 0;
+               } else
+                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
+       END OBJ(smapi_bat_perc, 0)
+               if (arg)
+                       obj->data.s = strndup(arg, text_buffer_size);
+               else
+                       NORM_ERR("smapi_bat_perc needs an argument");
+       END OBJ(smapi_bat_temp, 0)
+               if (arg)
+                       obj->data.s = strndup(arg, text_buffer_size);
+               else
+                       NORM_ERR("smapi_bat_temp needs an argument");
+       END OBJ(smapi_bat_power, 0)
+               if (arg)
+                       obj->data.s = strndup(arg, text_buffer_size);
+               else
+                       NORM_ERR("smapi_bat_power needs an argument");
+#ifdef X11
+       END OBJ(smapi_bat_bar, 0)
+               SIZE_DEFAULTS(bar);
+               if(arg) {
+                       int cnt;
+                       if(sscanf(arg, "%i %n", &obj->data.i, &cnt) <= 0) {
+                               NORM_ERR("first argument to smapi_bat_bar must be an integer value");
+                               obj->data.i = -1;
+                       } else {
+                               obj->b = 4;
+                               arg = scan_bar(arg + cnt, &obj->a, &obj->b);
+                       }
+               } else
+                       NORM_ERR("smapi_bat_bar needs an argument");
 #endif /* X11 */
-
-static inline void set_foreground_color(long c)
-{
+#endif /* IBM */
+#ifdef MPD
+#define mpd_set_maxlen(name) \
+               if (arg) { \
+                       int i; \
+                       sscanf(arg, "%d", &i); \
+                       if (i > 0) \
+                               obj->data.i = i + 1; \
+                       else \
+                               NORM_ERR(#name ": invalid length argument"); \
+               }
+       END OBJ(mpd_artist, INFO_MPD)
+               mpd_set_maxlen(mpd_artist);
+               init_mpd();
+       END OBJ(mpd_title, INFO_MPD)
+               mpd_set_maxlen(mpd_title);
+               init_mpd();
+       END OBJ(mpd_random, INFO_MPD) init_mpd();
+       END OBJ(mpd_repeat, INFO_MPD) init_mpd();
+       END OBJ(mpd_elapsed, INFO_MPD) init_mpd();
+       END OBJ(mpd_length, INFO_MPD) init_mpd();
+       END OBJ(mpd_track, INFO_MPD)
+               mpd_set_maxlen(mpd_track);
+               init_mpd();
+       END OBJ(mpd_name, INFO_MPD)
+               mpd_set_maxlen(mpd_name);
+               init_mpd();
+       END OBJ(mpd_file, INFO_MPD)
+               mpd_set_maxlen(mpd_file);
+               init_mpd();
+       END OBJ(mpd_percent, INFO_MPD) init_mpd();
+       END OBJ(mpd_album, INFO_MPD)
+               mpd_set_maxlen(mpd_album);
+               init_mpd();
+       END OBJ(mpd_vol, INFO_MPD) init_mpd();
+       END OBJ(mpd_bitrate, INFO_MPD) init_mpd();
+       END OBJ(mpd_status, INFO_MPD) init_mpd();
+       END OBJ(mpd_bar, INFO_MPD)
+               SIZE_DEFAULTS(bar);
+               scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
+               init_mpd();
+       END OBJ(mpd_smart, INFO_MPD)
+               mpd_set_maxlen(mpd_smart);
+               init_mpd();
+       END OBJ_IF(if_mpd_playing, INFO_MPD)
+               init_mpd();
+#undef mpd_set_maxlen
+#endif /* MPD */
+#ifdef MOC
+       END OBJ(moc_state, INFO_MOC)
+       END OBJ(moc_file, INFO_MOC)
+       END OBJ(moc_title, INFO_MOC)
+       END OBJ(moc_artist, INFO_MOC)
+       END OBJ(moc_song, INFO_MOC)
+       END OBJ(moc_album, INFO_MOC)
+       END OBJ(moc_totaltime, INFO_MOC)
+       END OBJ(moc_timeleft, INFO_MOC)
+       END OBJ(moc_curtime, INFO_MOC)
+       END OBJ(moc_bitrate, INFO_MOC)
+       END OBJ(moc_rate, INFO_MOC)
+#endif /* MOC */
+#ifdef XMMS2
+       END OBJ(xmms2_artist, INFO_XMMS2)
+       END OBJ(xmms2_album, INFO_XMMS2)
+       END OBJ(xmms2_title, INFO_XMMS2)
+       END OBJ(xmms2_genre, INFO_XMMS2)
+       END OBJ(xmms2_comment, INFO_XMMS2)
+       END OBJ(xmms2_url, INFO_XMMS2)
+       END OBJ(xmms2_tracknr, INFO_XMMS2)
+       END OBJ(xmms2_bitrate, INFO_XMMS2)
+       END OBJ(xmms2_date, INFO_XMMS2)
+       END OBJ(xmms2_id, INFO_XMMS2)
+       END OBJ(xmms2_duration, INFO_XMMS2)
+       END OBJ(xmms2_elapsed, INFO_XMMS2)
+       END OBJ(xmms2_size, INFO_XMMS2)
+       END OBJ(xmms2_status, INFO_XMMS2)
+       END OBJ(xmms2_percent, INFO_XMMS2)
 #ifdef X11
-       if (ctx->output_methods & TO_X) {
-               current_color = c;
-               XSetForeground(display, window.gc, c);
-       }
+       END OBJ(xmms2_bar, INFO_XMMS2)
+               SIZE_DEFAULTS(bar);
+               scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
 #endif /* X11 */
-#ifdef NCURSES
-       if (ctx->output_methods & TO_NCURSES) {
-               attron(COLOR_PAIR(c));
-       }
-#endif /* NCURSES */
-       UNUSED(c);
-       return;
-}
-
-static void draw_string(const char *s)
-{
-       int i, i2, pos, width_of_s;
-       int max = 0;
-       int added;
-       char *s_with_newlines;
-
-       if (s[0] == '\0') {
-               return;
-       }
-
-       width_of_s = get_string_width(s);
-       s_with_newlines = strdup(s);
-       for(i = 0; i < (int) strlen(s_with_newlines); i++) {
-               if(s_with_newlines[i] == SECRIT_MULTILINE_CHAR) {
-                       s_with_newlines[i] = '\n';
-               }
-       }
-       if ((ctx->output_methods & TO_STDOUT) && draw_mode == FG) {
-               printf("%s\n", s_with_newlines);
-               if (extra_newline) fputc('\n', stdout);
-               fflush(stdout); /* output immediately, don't buffer */
-       }
-       if ((ctx->output_methods & TO_STDERR) && draw_mode == FG) {
-               fprintf(stderr, "%s\n", s_with_newlines);
-               fflush(stderr); /* output immediately, don't buffer */
-       }
-       if ((ctx->output_methods & OVERWRITE_FILE) && draw_mode == FG && overwrite_fpointer) {
-               fprintf(overwrite_fpointer, "%s\n", s_with_newlines);
-       }
-       if ((ctx->output_methods & APPEND_FILE) && draw_mode == FG && append_fpointer) {
-               fprintf(append_fpointer, "%s\n", s_with_newlines);
-       }
-#ifdef NCURSES
-       if ((ctx->output_methods & TO_NCURSES) && draw_mode == FG) {
-               printw("%s", s_with_newlines);
-       }
+       END OBJ(xmms2_smart, INFO_XMMS2)
+       END OBJ(xmms2_playlist, INFO_XMMS2)
+       END OBJ(xmms2_timesplayed, INFO_XMMS2)
+       END OBJ_IF(if_xmms2_connected, INFO_XMMS2)
 #endif
-       free(s_with_newlines);
-       memset(ctx->tmpstring1, 0, text_buffer_size);
-       memset(ctx->tmpstring2, 0, text_buffer_size);
-       strncpy(ctx->tmpstring1, s, text_buffer_size - 1);
-       pos = 0;
-       added = 0;
-
+#ifdef AUDACIOUS
+       END OBJ(audacious_status, INFO_AUDACIOUS)
+       END OBJ(audacious_title, INFO_AUDACIOUS)
+               if (arg) {
+                       sscanf(arg, "%d", &info.audacious.max_title_len);
+                       if (info.audacious.max_title_len > 0) {
+                               info.audacious.max_title_len++;
+                       } else {
+                               CRIT_ERR(obj, free_at_crash, "audacious_title: invalid length argument");
+                       }
+               }
+       END OBJ(audacious_length, INFO_AUDACIOUS)
+       END OBJ(audacious_length_seconds, INFO_AUDACIOUS)
+       END OBJ(audacious_position, INFO_AUDACIOUS)
+       END OBJ(audacious_position_seconds, INFO_AUDACIOUS)
+       END OBJ(audacious_bitrate, INFO_AUDACIOUS)
+       END OBJ(audacious_frequency, INFO_AUDACIOUS)
+       END OBJ(audacious_channels, INFO_AUDACIOUS)
+       END OBJ(audacious_filename, INFO_AUDACIOUS)
+       END OBJ(audacious_playlist_length, INFO_AUDACIOUS)
+       END OBJ(audacious_playlist_position, INFO_AUDACIOUS)
+       END OBJ(audacious_main_volume, INFO_AUDACIOUS)
 #ifdef X11
-       if (ctx->output_methods & TO_X) {
-               max = ((text_width - width_of_s) / get_string_width(" "));
-       }
+       END OBJ(audacious_bar, INFO_AUDACIOUS)
+               SIZE_DEFAULTS(bar);
+               scan_bar(arg, &obj->a, &obj->b);
 #endif /* X11 */
-       /* This code looks for tabs in the text and coverts them to spaces.
-        * The trick is getting the correct number of spaces, and not going
-        * over the window's size without forcing the window larger. */
-       for (i = 0; i < (int) text_buffer_size; i++) {
-               if (ctx->tmpstring1[i] == '\t') {
-                       i2 = 0;
-                       for (i2 = 0; i2 < (8 - (1 + pos) % 8) && added <= max; i2++) {
-                               /* guard against overrun */
-                               ctx->tmpstring2[MIN(pos + i2, (int)text_buffer_size - 1)] = ' ';
-                               added++;
-                       }
-                       pos += i2;
+#endif
+#ifdef BMPX
+       END OBJ(bmpx_title, INFO_BMPX)
+               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
+       END OBJ(bmpx_artist, INFO_BMPX)
+               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
+       END OBJ(bmpx_album, INFO_BMPX)
+               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
+       END OBJ(bmpx_track, INFO_BMPX)
+               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
+       END OBJ(bmpx_uri, INFO_BMPX)
+               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
+       END OBJ(bmpx_bitrate, INFO_BMPX)
+               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
+#endif
+#ifdef EVE
+       END OBJ(eve, 0)
+               if(arg) {
+                       int argc;
+                       char *userid = (char *) malloc(20 * sizeof(char));
+                       char *apikey = (char *) malloc(64 * sizeof(char));
+                       char *charid = (char *) malloc(20 * sizeof(char));
+
+                       argc = sscanf(arg, "%20s %64s %20s", userid, apikey, charid);
+                       obj->data.eve.charid = charid;
+                       obj->data.eve.userid = userid;
+                       obj->data.eve.apikey = apikey;
+
+                       init_eve();
                } else {
-                       /* guard against overrun */
-                       ctx->tmpstring2[MIN(pos, (int) text_buffer_size - 1)] = ctx->tmpstring1[i];
-                       pos++;
+                       CRIT_ERR(obj, free_at_crash, "eve needs arguments: <userid> <apikey> <characterid>");
                }
-       }
-#ifdef X11
-       if (ctx->output_methods & TO_X) {
-               if (text_width == maximum_width) {
-                       /* this means the text is probably pushing the limit,
-                        * so we'll chop it */
-                       while (cur_x + get_string_width(ctx->tmpstring2) - text_start_x
-                                       > maximum_width && strlen(ctx->tmpstring2) > 0) {
-                               ctx->tmpstring2[strlen(ctx->tmpstring2) - 1] = '\0';
+#endif
+#ifdef HAVE_CURL
+       END OBJ(curl, 0)
+               if (arg) {
+                       int argc;
+                       float interval = 0;
+                       char *uri = (char *) malloc(128 * sizeof(char));
+
+                       argc = sscanf(arg, "%127s %f", uri, &interval);
+                       if (argc == 2) {
+                               obj->data.curl.uri = uri;
+                               obj->data.curl.interval = interval > 0 ? interval * 60 : 15*60;
+                       } else {
+                               NORM_ERR("wrong number of arguments for $curl");
                        }
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "curl needs arguments: <uri> <interval in minutes>");
                }
-       }
-#endif /* X11 */
-       s = ctx->tmpstring2;
-#ifdef X11
-       if (ctx->output_methods & TO_X) {
-#ifdef XFT
-               if (use_xft) {
-                       XColor c;
-                       XftColor c2;
-
-                       c.pixel = current_color;
-                       XQueryColor(display, DefaultColormap(display, screen), &c);
-
-                       c2.pixel = c.pixel;
-                       c2.color.red = c.red;
-                       c2.color.green = c.green;
-                       c2.color.blue = c.blue;
-                       c2.color.alpha = ctx->fonts[ctx->selected_font].font_alpha;
-                       if (utf8_mode) {
-                               XftDrawStringUtf8(window.xftdraw, &c2, ctx->fonts[ctx->selected_font].xftfont,
-                                       cur_x, cur_y, (const XftChar8 *) s, strlen(s));
+#endif
+#ifdef RSS
+       END OBJ(rss, 0)
+               if (arg) {
+                       float interval = 0;
+                       int argc, act_par = 0;
+                       unsigned int nrspaces = 0;
+                       char *uri = (char *) malloc(128 * sizeof(char));
+                       char *action = (char *) malloc(64 * sizeof(char));
+
+                       argc = sscanf(arg, "%127s %f %63s %d %u", uri, &interval, action,
+                                       &act_par, &nrspaces);
+                       if (argc >= 3) {
+                               obj->data.rss.uri = uri;
+                               obj->data.rss.interval = interval > 0 ? interval * 60 : 15*60;
+                               obj->data.rss.action = action;
+                               obj->data.rss.act_par = act_par;
+                               obj->data.rss.nrspaces = nrspaces;
                        } else {
-                               XftDrawString8(window.xftdraw, &c2, ctx->fonts[ctx->selected_font].xftfont,
-                                       cur_x, cur_y, (const XftChar8 *) s, strlen(s));
+                               NORM_ERR("wrong number of arguments for $rss");
                        }
-               } else
-#endif
-               {
-                       XDrawString(display, window.drawable, window.gc, cur_x, cur_y, s,
-                               strlen(s));
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "rss needs arguments: <uri> <interval in minutes> <action> "
+                                       "[act_par] [spaces in front]");
                }
-               cur_x += width_of_s;
-       }
-#endif /* X11 */
-       memcpy(ctx->tmpstring1, s, text_buffer_size);
-}
+#endif
+#ifdef WEATHER
+       END OBJ(weather, 0)
+               if (arg) {
+                       int argc;
+                       float interval = 0;
+                       char *locID = (char *) malloc(9 * sizeof(char));
+                       char *uri = (char *) malloc(128 * sizeof(char));
+                       char *data_type = (char *) malloc(32 * sizeof(char));
+
+                       argc = sscanf(arg, "%119s %8s %31s %f", uri, locID, data_type, &interval);
+
+                       if (argc >= 3) {
+                               if (process_weather_uri(uri, locID, 0)) {
+                                       free(data_type);
+                                       free(uri);
+                                       free(locID);
+                                       CRIT_ERR(obj, free_at_crash, \
+                                                       "could not recognize the weather uri");
+                               }
 
-int draw_each_line_inner(char *s, int special_index, int last_special_applied)
-{
-#ifdef X11
-       int font_h = font_height();
-       int cur_y_add = 0;
-#endif /* X11 */
-       char *recurse = 0;
-       char *p = s;
-       int last_special_needed = -1;
-       int orig_special_index = special_index;
+                               obj->data.weather.uri = uri;
+                               obj->data.weather.data_type = data_type;
 
-#ifdef X11
-       cur_x = text_start_x;
-       cur_y += font_ascent();
-#endif /* X11 */
+                               /* Limit the data retrieval interval to half hour min */
+                               if (interval < 30) {
+                                       interval = 30;
+                               }
 
-       while (*p) {
-               if (*p == SECRIT_MULTILINE_CHAR) {
-                       /* special newline marker for multiline objects */
-                       recurse = p + 1;
-                       *p = '\0';
-                       break;
-               }
-               if (*p == SPECIAL_CHAR || last_special_applied > -1) {
-#ifdef X11
-                       int w = 0;
-#endif /* X11 */
+                               /* Convert to seconds */
+                               obj->data.weather.interval = interval * 60;
+                               free(locID);
 
-                       /* draw string before special, unless we're dealing multiline
-                        * specials */
-                       if (last_special_applied > -1) {
-                               special_index = last_special_applied;
+                               DBGP("weather: fetching %s from %s every %d seconds", \
+                                               data_type, uri, obj->data.weather.interval);
                        } else {
-                               *p = '\0';
-                               draw_string(s);
-                               *p = SPECIAL_CHAR;
-                               s = p + 1;
+                               free(data_type);
+                               free(uri);
+                               free(locID);
+                               CRIT_ERR(obj, free_at_crash, "wrong number of arguments for $weather");
                        }
-                       /* draw special */
-                       switch (specials[special_index].type) {
-#ifdef X11
-                               case HORIZONTAL_LINE:
-                               {
-                                       int h = specials[special_index].height;
-                                       int mid = font_ascent() / 2;
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "weather needs arguments: <uri> <locID> <data_type> [interval in minutes]");
+               }
+#endif
+#ifdef XOAP
+       END OBJ(weather_forecast, 0)
+               if (arg) {
+                       int argc;
+                       unsigned int day;
+                       float interval = 0;
+                       char *locID = (char *) malloc(9 * sizeof(char));
+                       char *uri = (char *) malloc(128 * sizeof(char));
+                       char *data_type = (char *) malloc(32 * sizeof(char));
+
+                       argc = sscanf(arg, "%119s %8s %1u %31s %f", uri, locID, &day, data_type, &interval);
+
+                       if (argc >= 4) {
+                               if (process_weather_uri(uri, locID, 1)) {
+                                       free(data_type);
+                                       free(uri);
+                                       free(locID);
+                                       CRIT_ERR(obj, free_at_crash, \
+                                                       "could not recognize the weather forecast uri");
+                               }
 
-                                       w = text_start_x + text_width - cur_x;
+                               obj->data.weather_forecast.uri = uri;
+                               obj->data.weather_forecast.data_type = data_type;
 
-                                       XSetLineAttributes(display, window.gc, h, LineSolid,
-                                               CapButt, JoinMiter);
-                                       XDrawLine(display, window.drawable, window.gc, cur_x,
-                                               cur_y - mid / 2, cur_x + w, cur_y - mid / 2);
-                                       break;
+                               /* Limit the day between 0 (today) and FORECAST_DAYS */
+                               if (day >= FORECAST_DAYS) {
+                                       day = FORECAST_DAYS-1;
                                }
+                               obj->data.weather_forecast.day = day;
 
-                               case STIPPLED_HR:
-                               {
-                                       int h = specials[special_index].height;
-                                       int tmp_s = specials[special_index].arg;
-                                       int mid = font_ascent() / 2;
-                                       char ss[2] = { tmp_s, tmp_s };
-
-                                       w = text_start_x + text_width - cur_x - 1;
-                                       XSetLineAttributes(display, window.gc, h, LineOnOffDash,
-                                               CapButt, JoinMiter);
-                                       XSetDashes(display, window.gc, 0, ss, 2);
-                                       XDrawLine(display, window.drawable, window.gc, cur_x,
-                                               cur_y - mid / 2, cur_x + w, cur_y - mid / 2);
-                                       break;
+                               /* Limit the data retrieval interval to 3 hours and an half */
+                               if (interval < 210) {
+                                       interval = 210;
                                }
 
-                               case BAR:
-                               {
-                                       int h, bar_usage, by;
-                                       if (cur_x - text_start_x > maximum_width
-                                                       && maximum_width > 0) {
-                                               break;
-                                       }
-                                       h = specials[special_index].height;
-                                       bar_usage = specials[special_index].arg;
-                                       by = cur_y - (font_ascent() / 2) - 1;
+                               /* Convert to seconds */
+                               obj->data.weather_forecast.interval = interval * 60;
+                               free(locID);
 
-                                       if (h < font_h) {
-                                               by -= h / 2 - 1;
+                               DBGP("weather_forecast: fetching %s for day %d from %s every %d seconds", \
+                                        data_type, day, uri, obj->data.weather_forecast.interval);
+                       } else {
+                               free(data_type);
+                               free(uri);
+                               free(locID);
+                               CRIT_ERR(obj, free_at_crash, "wrong number of arguments for $weather_forecast");
+                       }
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "weather_forecast needs arguments: <uri> <locID> <day> <data_type> [interval in minutes]");
+               }
+#endif
+#ifdef HAVE_LUA
+       END OBJ(lua, 0)
+               if (arg) {
+                       obj->data.s = strndup(arg, text_buffer_size);
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "lua needs arguments: <function name> [function parameters]");
+               }
+       END OBJ(lua_parse, 0)
+               if (arg) {
+                       obj->data.s = strndup(arg, text_buffer_size);
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "lua_parse needs arguments: <function name> [function parameters]");
+               }
+       END OBJ(lua_bar, 0)
+               SIZE_DEFAULTS(bar);
+               if (arg) {
+                       arg = scan_bar(arg, &obj->a, &obj->b);
+                       if(arg) {
+                               obj->data.s = strndup(arg, text_buffer_size);
+                       } else {
+                               CRIT_ERR(obj, free_at_crash, "lua_bar needs arguments: <height>,<width> <function name> [function parameters]");
+                       }
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "lua_bar needs arguments: <height>,<width> <function name> [function parameters]");
+               }
+#ifdef X11
+       END OBJ(lua_graph, 0)
+               SIZE_DEFAULTS(graph);
+               if (arg) {
+                       char *buf = 0;
+                       buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
+                                       &obj->e, &obj->char_a, &obj->char_b);
+                       if (buf) {
+                               obj->data.s = buf;
+                       } else {
+                               CRIT_ERR(obj, free_at_crash, "lua_graph needs arguments: <function name> [height],[width] [gradient colour 1] [gradient colour 2] [scale] [-t] [-l]");
+                       }
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "lua_graph needs arguments: <function name> [height],[width] [gradient colour 1] [gradient colour 2] [scale] [-t] [-l]");
+       }
+       END OBJ(lua_gauge, 0)
+               SIZE_DEFAULTS(gauge);
+               if (arg) {
+                       arg = scan_gauge(arg, &obj->a, &obj->b);
+                       if (arg) {
+                               obj->data.s = strndup(arg, text_buffer_size);
+                       } else {
+                               CRIT_ERR(obj, free_at_crash, "lua_gauge needs arguments: <height>,<width> <function name> [function parameters]");
+                       }
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "lua_gauge needs arguments: <height>,<width> <function name> [function parameters]");
+               }
+#endif /* X11 */
+#endif /* HAVE_LUA */
+#ifdef HDDTEMP
+       END OBJ(hddtemp, 0)
+               if (scan_hddtemp(arg, &obj->data.hddtemp.dev,
+                                &obj->data.hddtemp.addr, &obj->data.hddtemp.port)) {
+                       NORM_ERR("hddtemp needs arguments");
+                       obj->type = OBJ_text;
+                       obj->data.s = strndup("${hddtemp}", text_buffer_size);
+                       obj->data.hddtemp.update_time = 0;
+               } else
+                       obj->data.hddtemp.temp = NULL;
+#endif /* HDDTEMP */
+#ifdef TCP_PORT_MONITOR
+       END OBJ(tcp_portmon, INFO_TCP_PORT_MONITOR)
+               tcp_portmon_init(arg, &obj->data.tcp_port_monitor);
+#endif /* TCP_PORT_MONITOR */
+       END OBJ(entropy_avail, INFO_ENTROPY)
+       END OBJ(entropy_perc, INFO_ENTROPY)
+       END OBJ(entropy_poolsize, INFO_ENTROPY)
+       END OBJ(entropy_bar, INFO_ENTROPY)
+               SIZE_DEFAULTS(bar);
+               scan_bar(arg, &obj->a, &obj->b);
+       END OBJ(include, 0)
+               if(arg) {
+                       struct conftree *leaf = conftree_add(currentconffile, arg);
+                       if(leaf) {
+                               if (load_config_file(arg) == TRUE) {
+                                       obj->sub = malloc(sizeof(struct text_object));
+                                       currentconffile = leaf;
+                                       extract_variable_text_internal(obj->sub, get_global_text());
+                                       currentconffile = leaf->back;
+                               } else {
+                                       NORM_ERR("Can't load configfile '%s'.", arg);
+                               }
+                       } else {
+                               NORM_ERR("You are trying to load '%s' recursively, I'm only going to load it once to prevent an infinite loop.", arg);
+                       }
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "include needs a argument");
+               }
+       END OBJ(blink, 0)
+               if(arg) {
+                       obj->sub = malloc(sizeof(struct text_object));
+                       extract_variable_text_internal(obj->sub, arg);
+               }else{
+                       CRIT_ERR(obj, free_at_crash, "blink needs a argument");
+               }
+       END OBJ(to_bytes, 0)
+               if(arg) {
+                       obj->sub = malloc(sizeof(struct text_object));
+                       extract_variable_text_internal(obj->sub, arg);
+               }else{
+                       CRIT_ERR(obj, free_at_crash, "to_bytes needs a argument");
+               }
+       END OBJ(scroll, 0)
+               int n1 = 0, n2 = 0;
+
+               obj->data.scroll.resetcolor = get_current_text_color();
+               obj->data.scroll.step = 1;
+               if (arg && sscanf(arg, "%u %n", &obj->data.scroll.show, &n1) > 0) {
+                       sscanf(arg + n1, "%u %n", &obj->data.scroll.step, &n2);
+                       if (*(arg + n1 + n2)) {
+                               n1 += n2;
+                       } else {
+                               obj->data.scroll.step = 1;
+                       }
+                       obj->data.scroll.text = malloc(strlen(arg + n1) + obj->data.scroll.show + 1);
+                       for(n2 = 0; (unsigned int) n2 < obj->data.scroll.show; n2++) {
+                               obj->data.scroll.text[n2] = ' ';
+                       }
+                       obj->data.scroll.text[n2] = 0;
+                       strcat(obj->data.scroll.text, arg + n1);
+                       obj->data.scroll.start = 0;
+                       obj->sub = malloc(sizeof(struct text_object));
+                       extract_variable_text_internal(obj->sub,
+                                       obj->data.scroll.text);
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "scroll needs arguments: <length> [<step>] <text>");
+               }
+       END OBJ(combine, 0)
+               if(arg) {
+                       unsigned int i,j;
+                       unsigned int indenting = 0;     //vars can be used as args for other vars
+                       int startvar[2];
+                       int endvar[2];
+                       startvar[0] = endvar[0] = startvar[1] = endvar[1] = -1;
+                       j=0;
+                       for (i=0; arg[i] != 0 && j < 2; i++) {
+                               if(startvar[j] == -1) {
+                                       if(arg[i] == '$') {
+                                               startvar[j] = i;
                                        }
-                                       w = specials[special_index].width;
-                                       if (w == 0) {
-                                               w = text_start_x + text_width - cur_x - 1;
+                               }else if(endvar[j] == -1) {
+                                       if(arg[i] == '{') {
+                                               indenting++;
+                                       }else if(arg[i] == '}') {
+                                               indenting--;
                                        }
-                                       if (w < 0) {
-                                               w = 0;
+                                       if (indenting == 0 && arg[i+1] < 48) {  //<48 has 0, $, and the most used chars not used in varnames but not { or }
+                                               endvar[j]=i+1;
+                                               j++;
                                        }
+                               }
+                       }
+                       if(startvar[0] >= 0 && endvar[0] >= 0 && startvar[1] >= 0 && endvar[1] >= 0) {
+                               obj->data.combine.left = malloc(endvar[0]-startvar[0] + 1);
+                               obj->data.combine.seperation = malloc(startvar[1] - endvar[0] + 1);
+                               obj->data.combine.right= malloc(endvar[1]-startvar[1] + 1);
 
-                                       XSetLineAttributes(display, window.gc, 1, LineSolid,
-                                               CapButt, JoinMiter);
+                               strncpy(obj->data.combine.left, arg + startvar[0], endvar[0] - startvar[0]);
+                               obj->data.combine.left[endvar[0] - startvar[0]] = 0;
 
-                                       XDrawRectangle(display, window.drawable, window.gc, cur_x,
-                                               by, w, h);
-                                       XFillRectangle(display, window.drawable, window.gc, cur_x,
-                                               by, w * bar_usage / 255, h);
-                                       if (h > cur_y_add
-                                                       && h > font_h) {
-                                               cur_y_add = h;
-                                       }
-                                       break;
-                               }
+                               strncpy(obj->data.combine.seperation, arg + endvar[0], startvar[1] - endvar[0]);
+                               obj->data.combine.seperation[startvar[1] - endvar[0]] = 0;
 
-                               case GAUGE: /* new GAUGE  */
-                               {
-                                       int h, by = 0;
-                                       unsigned long last_colour = current_color;
-#ifdef MATH
-                                       float angle, px, py;
-                                       int usage;
-#endif /* MATH */
-
-                                       if (cur_x - text_start_x > maximum_width
-                                                       && maximum_width > 0) {
-                                               break;
-                                       }
+                               strncpy(obj->data.combine.right, arg + startvar[1], endvar[1] - startvar[1]);
+                               obj->data.combine.right[endvar[1] - startvar[1]] = 0;
 
-                                       h = specials[special_index].height;
-                                       by = cur_y - (font_ascent() / 2) - 1;
+                               obj->sub = malloc(sizeof(struct text_object));
+                               extract_variable_text_internal(obj->sub, obj->data.combine.left);
+                               obj->sub->sub = malloc(sizeof(struct text_object));
+                               extract_variable_text_internal(obj->sub->sub, obj->data.combine.right);
+                       } else {
+                               CRIT_ERR(obj, free_at_crash, "combine needs arguments: <text1> <text2>");
+                       }
+               } else {
+                       CRIT_ERR(obj, free_at_crash, "combine needs arguments: <text1> <text2>");
+               }
+#ifdef NVIDIA
+       END OBJ(nvidia, 0)
+               if (!arg) {
+                       CRIT_ERR(obj, free_at_crash, "nvidia needs an argument\n");
+               } else if (set_nvidia_type(&obj->data.nvidia, arg)) {
+                       CRIT_ERR(obj, free_at_crash, "nvidia: invalid argument"
+                                " specified: '%s'\n", arg);
+               }
+#endif /* NVIDIA */
+#ifdef APCUPSD
+               init_apcupsd();
+               END OBJ(apcupsd, INFO_APCUPSD)
+                       if (arg) {
+                               char host[64];
+                               int port;
+                               if (sscanf(arg, "%63s %d", host, &port) != 2) {
+                                       CRIT_ERR(obj, free_at_crash, "apcupsd needs arguments: <host> <port>");
+                               } else {
+                                       info.apcupsd.port = htons(port);
+                                       strncpy(info.apcupsd.host, host, sizeof(info.apcupsd.host));
+                               }
+                       } else {
+                               CRIT_ERR(obj, free_at_crash, "apcupsd needs arguments: <host> <port>");
+                       }
+                       END OBJ(apcupsd_name, INFO_APCUPSD)
+                       END OBJ(apcupsd_model, INFO_APCUPSD)
+                       END OBJ(apcupsd_upsmode, INFO_APCUPSD)
+                       END OBJ(apcupsd_cable, INFO_APCUPSD)
+                       END OBJ(apcupsd_status, INFO_APCUPSD)
+                       END OBJ(apcupsd_linev, INFO_APCUPSD)
+                       END OBJ(apcupsd_load, INFO_APCUPSD)
+                       END OBJ(apcupsd_loadbar, INFO_APCUPSD)
+                               SIZE_DEFAULTS(bar);
+                               scan_bar(arg, &obj->a, &obj->b);
+#ifdef X11
+                       END OBJ(apcupsd_loadgraph, INFO_APCUPSD)
+                               char* buf = 0;
+                               SIZE_DEFAULTS(graph);
+                               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
+                                               &obj->e, &obj->char_a, &obj->char_b);
+                               if (buf) free(buf);
+                       END OBJ(apcupsd_loadgauge, INFO_APCUPSD)
+                               SIZE_DEFAULTS(gauge);
+                               scan_gauge(arg, &obj->a, &obj->b);
+#endif /* X11 */
+                       END OBJ(apcupsd_charge, INFO_APCUPSD)
+                       END OBJ(apcupsd_timeleft, INFO_APCUPSD)
+                       END OBJ(apcupsd_temp, INFO_APCUPSD)
+                       END OBJ(apcupsd_lastxfer, INFO_APCUPSD)
+#endif /* APCUPSD */
+       END {
+               char buf[256];
 
-                                       if (h < font_h) {
-                                               by -= h / 2 - 1;
-                                       }
-                                       w = specials[special_index].width;
-                                       if (w == 0) {
-                                               w = text_start_x + text_width - cur_x - 1;
-                                       }
-                                       if (w < 0) {
-                                               w = 0;
-                                       }
+               NORM_ERR("unknown variable %s", s);
+               obj->type = OBJ_text;
+               snprintf(buf, 256, "${%s}", s);
+               obj->data.s = strndup(buf, text_buffer_size);
+       }
+#undef OBJ
 
-                                       XSetLineAttributes(display, window.gc, 1, LineSolid,
-                                                       CapButt, JoinMiter);
+       return obj;
+}
 
-                                       XDrawArc(display, window.drawable, window.gc,
-                                                       cur_x, by, w, h * 2, 0, 180*64);
+/* backslash_escape - do the actual substitution task for template objects
+ *
+ * The field templates is used for substituting the \N occurences. Set it to
+ * NULL to leave them as they are.
+ */
+static char *backslash_escape(const char *src, char **templates, unsigned int template_count)
+{
+       char *src_dup;
+       const char *p;
+       unsigned int dup_idx = 0, dup_len;
 
-#ifdef MATH
-                                       usage = specials[special_index].arg;
-                                       angle = (M_PI)*(float)(usage)/255.;
-                                       px = (float)(cur_x+(w/2.))-(float)(w/2.)*cos(angle);
-                                       py = (float)(by+(h))-(float)(h)*sin(angle);
+       dup_len = strlen(src) + 1;
+       src_dup = malloc(dup_len * sizeof(char));
 
-                                       XDrawLine(display, window.drawable, window.gc,
-                                                       cur_x + (w/2.), by+(h), (int)(px), (int)(py));
-#endif /* MATH */
+       p = src;
+       while (*p) {
+               switch (*p) {
+               case '\\':
+                       if (!*(p + 1))
+                               break;
+                       if (*(p + 1) == '\\') {
+                               src_dup[dup_idx++] = '\\';
+                               p++;
+                       } else if (*(p + 1) == ' ') {
+                               src_dup[dup_idx++] = ' ';
+                               p++;
+                       } else if (*(p + 1) == 'n') {
+                               src_dup[dup_idx++] = '\n';
+                               p++;
+                       } else if (templates) {
+                               unsigned int tmpl_num;
+                               int digits;
+                               if ((sscanf(p + 1, "%u%n", &tmpl_num, &digits) <= 0) ||
+                                   (tmpl_num > template_count))
+                                       break;
+                               dup_len += strlen(templates[tmpl_num - 1]);
+                               src_dup = realloc(src_dup, dup_len * sizeof(char));
+                               sprintf(src_dup + dup_idx, "%s", templates[tmpl_num - 1]);
+                               dup_idx += strlen(templates[tmpl_num - 1]);
+                               p += digits;
+                       }
+                       break;
+               default:
+                       src_dup[dup_idx++] = *p;
+                       break;
+               }
+               p++;
+       }
+       src_dup[dup_idx] = '\0';
+       src_dup = realloc(src_dup, (strlen(src_dup) + 1) * sizeof(char));
+       return src_dup;
+}
 
-                                       if (h > cur_y_add
-                                                       && h > font_h) {
-                                               cur_y_add = h;
-                                       }
+/* handle_template_object - core logic of the template object
+ *
+ * use config variables like this:
+ * template1 = "$\1\2"
+ * template2 = "\1: ${fs_bar 4,100 \2} ${fs_used \2} / ${fs_size \2}"
+ *
+ * and use them like this:
+ * ${template1 node name}
+ * ${template2 root /}
+ * ${template2 cdrom /mnt/cdrom}
+ */
+static char *handle_template(const char *tmpl, const char *args)
+{
+       char *args_dup = NULL;
+       char *p, *p_old;
+       char **argsp = NULL;
+       unsigned int argcnt = 0, template_idx, i;
+       char *eval_text;
+
+       if ((sscanf(tmpl, "template%u", &template_idx) != 1) ||
+           (template_idx >= MAX_TEMPLATES))
+               return NULL;
 
-                                       set_foreground_color(last_colour);
+       if(args) {
+               args_dup = strdup(args);
+               p = args_dup;
+               while (*p) {
+                       while (*p && (*p == ' ' && (p == args_dup || *(p - 1) != '\\')))
+                               p++;
+                       if (p > args_dup && *(p - 1) == '\\')
+                               p--;
+                       p_old = p;
+                       while (*p && (*p != ' ' || (p > args_dup && *(p - 1) == '\\')))
+                               p++;
+                       if (*p) {
+                               (*p) = '\0';
+                               p++;
+                       }
+                       argsp = realloc(argsp, ++argcnt * sizeof(char *));
+                       argsp[argcnt - 1] = p_old;
+               }
+               for (i = 0; i < argcnt; i++) {
+                       char *tmp;
+                       tmp = backslash_escape(argsp[i], NULL, 0);
+                       DBGP2("%s: substituted arg '%s' to '%s'", tmpl, argsp[i], tmp);
+                       argsp[i] = tmp;
+               }
+       }
+
+       eval_text = backslash_escape(get_templates()[template_idx], argsp, argcnt);
+       DBGP("substituted %s, output is '%s'", tmpl, eval_text);
+       free(args_dup);
+       for (i = 0; i < argcnt; i++)
+               free(argsp[i]);
+       free(argsp);
+       return eval_text;
+}
 
-                                       break;
+static char *find_and_replace_templates(const char *inbuf)
+{
+       char *outbuf, *indup, *p, *o, *templ, *args, *tmpl_out;
+       int stack, outlen;
 
-                               }
+       outlen = strlen(inbuf) + 1;
+       o = outbuf = calloc(outlen, sizeof(char));
+       memset(outbuf, 0, outlen * sizeof(char));
 
-                               case GRAPH:
-                               {
-                                       int h, by, i = 0, j = 0;
-                                       int colour_idx = 0;
-                                       unsigned long last_colour = current_color;
-                                       unsigned long *tmpcolour = 0;
-                                       if (cur_x - text_start_x > maximum_width
-                                                       && maximum_width > 0) {
-                                               break;
-                                       }
-                                       h = specials[special_index].height;
-                                       by = cur_y - (font_ascent() / 2) - 1;
+       p = indup = strdup(inbuf);
+       while (*p) {
+               while (*p && *p != '$')
+                       *(o++) = *(p++);
 
-                                       if (h < font_h) {
-                                               by -= h / 2 - 1;
-                                       }
-                                       w = specials[special_index].width;
-                                       if (w == 0) {
-                                               w = text_start_x + text_width - cur_x - 1;
-                                       }
-                                       if (w < 0) {
-                                               w = 0;
-                                       }
-                                       if (draw_graph_borders) {
-                                               XSetLineAttributes(display, window.gc, 1, LineSolid,
-                                                       CapButt, JoinMiter);
-                                               XDrawRectangle(display, window.drawable, window.gc,
-                                                       cur_x, by, w, h);
-                                       }
-                                       XSetLineAttributes(display, window.gc, 1, LineSolid,
-                                               CapButt, JoinMiter);
+               if (!(*p))
+                       break;
 
-                                       if (specials[special_index].last_colour != 0
-                                                       || specials[special_index].first_colour != 0) {
-                                               tmpcolour = do_gradient(w - 1, specials[special_index].last_colour, specials[special_index].first_colour);
-                                       }
-                                       colour_idx = 0;
-                                       for (i = w - 2; i > -1; i--) {
-                                               if (specials[special_index].last_colour != 0
-                                                               || specials[special_index].first_colour != 0) {
-                                                       if (specials[special_index].tempgrad) {
-#ifdef DEBUG_lol
-                                                               assert(
-                                                                               (int)((float)(w - 2) - specials[special_index].graph[j] *
-                                                                                       (w - 2) / (float)specials[special_index].graph_scale)
-                                                                               < w - 1
-                                                                         );
-                                                               assert(
-                                                                               (int)((float)(w - 2) - specials[special_index].graph[j] *
-                                                                                       (w - 2) / (float)specials[special_index].graph_scale)
-                                                                               > -1
-                                                                         );
-                                                               if (specials[special_index].graph[j] == specials[special_index].graph_scale) {
-                                                                       assert(
-                                                                                       (int)((float)(w - 2) - specials[special_index].graph[j] *
-                                                                                               (w - 2) / (float)specials[special_index].graph_scale)
-                                                                                       == 0
-                                                                                 );
-                                                               }
-#endif /* DEBUG_lol */
-                                                               XSetForeground(display, window.gc, tmpcolour[
-                                                                               (int)((float)(w - 2) - specials[special_index].graph[j] *
-                                                                                       (w - 2) / (float)specials[special_index].graph_scale)
-                                                                               ]);
-                                                       } else {
-                                                               XSetForeground(display, window.gc, tmpcolour[colour_idx++]);
-                                                       }
-                                               }
-                                               /* this is mugfugly, but it works */
-                                               XDrawLine(display, window.drawable, window.gc,
-                                                               cur_x + i + 1, by + h, cur_x + i + 1,
-                                                               round_to_int((double)by + h - specials[special_index].graph[j] *
-                                                                       (h - 1) / specials[special_index].graph_scale));
-                                               if ((w - i) / ((float) (w - 2) /
-                                                                       (specials[special_index].graph_width)) > j
-                                                               && j < MAX_GRAPH_DEPTH - 3) {
-                                                       j++;
-                                               }
-                                       }
-                                       if (tmpcolour) free(tmpcolour);
-                                       if (h > cur_y_add
-                                                       && h > font_h) {
-                                               cur_y_add = h;
-                                       }
-                                       /* if (draw_mode == BG) {
-                                               set_foreground_color(default_bg_color);
-                                       } else if (draw_mode == OUTLINE) {
-                                               set_foreground_color(default_out_color);
-                                       } else {
-                                               set_foreground_color(default_fg_color);
-                                       } */
-                                       if (show_graph_range) {
-                                               int tmp_x = cur_x;
-                                               int tmp_y = cur_y;
-                                               unsigned short int seconds = update_interval * w;
-                                               char *tmp_day_str;
-                                               char *tmp_hour_str;
-                                               char *tmp_min_str;
-                                               char *tmp_sec_str;
-                                               char *tmp_str;
-                                               unsigned short int timeunits;
-                                               if (seconds != 0) {
-                                                       timeunits = seconds / 86400; seconds %= 86400;
-                                                       if (timeunits > 0) {
-                                                               asprintf(&tmp_day_str, "%dd", timeunits);
-                                                       } else {
-                                                               tmp_day_str = strdup("");
-                                                       }
-                                                       timeunits = seconds / 3600; seconds %= 3600;
-                                                       if (timeunits > 0) {
-                                                               asprintf(&tmp_hour_str, "%dh", timeunits);
-                                                       } else {
-                                                               tmp_hour_str = strdup("");
-                                                       }
-                                                       timeunits = seconds / 60; seconds %= 60;
-                                                       if (timeunits > 0) {
-                                                               asprintf(&tmp_min_str, "%dm", timeunits);
-                                                       } else {
-                                                               tmp_min_str = strdup("");
-                                                       }
-                                                       if (seconds > 0) {
-                                                               asprintf(&tmp_sec_str, "%ds", seconds);
-                                                       } else {
-                                                               tmp_sec_str = strdup("");
-                                                       }
-                                                       asprintf(&tmp_str, "%s%s%s%s", tmp_day_str, tmp_hour_str, tmp_min_str, tmp_sec_str);
-                                                       free(tmp_day_str); free(tmp_hour_str); free(tmp_min_str); free(tmp_sec_str);
-                                               } else {
-                                                       asprintf(&tmp_str, "Range not possible"); // should never happen, but better safe then sorry
-                                               }
-                                               cur_x += (w / 2) - (font_ascent() * (strlen(tmp_str) / 2));
-                                               cur_y += font_h / 2;
-                                               draw_string(tmp_str);
-                                               free(tmp_str);
-                                               cur_x = tmp_x;
-                                               cur_y = tmp_y;
-                                       }
-#ifdef MATH
-                                       if (show_graph_scale && (specials[special_index].show_scale == 1)) {
-                                               int tmp_x = cur_x;
-                                               int tmp_y = cur_y;
-                                               char *tmp_str;
-                                               cur_x += font_ascent() / 2;
-                                               cur_y += font_h / 2;
-                                               tmp_str = (char *)
-                                                       calloc(log10(floor(specials[special_index].graph_scale)) + 4,
-                                                                       sizeof(char));
-                                               sprintf(tmp_str, "%.1f", specials[special_index].graph_scale);
-                                               draw_string(tmp_str);
-                                               free(tmp_str);
-                                               cur_x = tmp_x;
-                                               cur_y = tmp_y;
-                                       }
-#endif
-                                       set_foreground_color(last_colour);
-                                       break;
-                               }
-
-                               case FONT:
-                               {
-                                       int old = font_ascent();
-
-                                       cur_y -= font_ascent();
-                                       ctx->selected_font = specials[special_index].font_added;
-                                       set_font();
-                                       if (cur_y + font_ascent() < cur_y + old) {
-                                               cur_y += old;
-                                       } else {
-                                               cur_y += font_ascent();
-                                       }
-                                       font_h = font_height();
-                                       break;
-                               }
-#endif /* X11 */
-                               case FG:
-                                       if (draw_mode == FG) {
-                                               set_foreground_color(specials[special_index].arg);
-                                       }
-                                       break;
-
-#ifdef X11
-                               case BG:
-                                       if (draw_mode == BG) {
-                                               set_foreground_color(specials[special_index].arg);
-                                       }
-                                       break;
-
-                               case OUTLINE:
-                                       if (draw_mode == OUTLINE) {
-                                               set_foreground_color(specials[special_index].arg);
-                                       }
-                                       break;
-
-                               case OFFSET:
-                                       w += specials[special_index].arg;
-                                       last_special_needed = special_index;
-                                       break;
-
-                               case VOFFSET:
-                                       cur_y += specials[special_index].arg;
-                                       break;
-
-                               case GOTO:
-                                       if (specials[special_index].arg >= 0) {
-                                               cur_x = (int) specials[special_index].arg;
-                                       }
-                                       last_special_needed = special_index;
-                                       break;
-
-                               case TAB:
-                               {
-                                       int start = specials[special_index].arg;
-                                       int step = specials[special_index].width;
-
-                                       if (!step || step < 0) {
-                                               step = 10;
-                                       }
-                                       w = step - (cur_x - text_start_x - start) % step;
-                                       last_special_needed = special_index;
-                                       break;
-                               }
-
-                               case ALIGNR:
-                               {
-                                       /* TODO: add back in "+ window.border_inner_margin" to the end of
-                                        * this line? */
-                                       int pos_x = text_start_x + text_width -
-                                               get_string_width_special(s, special_index);
-
-                                       /* printf("pos_x %i text_start_x %i text_width %i cur_x %i "
-                                               "get_string_width(p) %i gap_x %i "
-                                               "specials[special_index].arg %i window.border_inner_margin %i "
-                                               "window.border_width %i\n", pos_x, text_start_x, text_width,
-                                               cur_x, get_string_width_special(s), gap_x,
-                                               specials[special_index].arg, window.border_inner_margin,
-                                               window.border_width); */
-                                       if (pos_x > specials[special_index].arg && pos_x > cur_x) {
-                                               cur_x = pos_x - specials[special_index].arg;
-                                       }
-                                       last_special_needed = special_index;
-                                       break;
-                               }
-
-                               case ALIGNC:
-                               {
-                                       int pos_x = (text_width) / 2 - get_string_width_special(s,
-                                                       special_index) / 2 - (cur_x -
-                                                               text_start_x);
-                                       /* int pos_x = text_start_x + text_width / 2 -
-                                               get_string_width_special(s) / 2; */
-
-                                       /* printf("pos_x %i text_start_x %i text_width %i cur_x %i "
-                                               "get_string_width(p) %i gap_x %i "
-                                               "specials[special_index].arg %i\n", pos_x, text_start_x,
-                                               text_width, cur_x, get_string_width(s), gap_x,
-                                               specials[special_index].arg); */
-                                       if (pos_x > specials[special_index].arg) {
-                                               w = pos_x - specials[special_index].arg;
-                                       }
-                                       last_special_needed = special_index;
-                                       break;
-                               }
-#endif /* X11 */
-                       }
-
-#ifdef X11
-                       cur_x += w;
-#endif /* X11 */
-
-                       if (special_index != last_special_applied) {
-                               special_index++;
-                       } else {
-                               special_index = orig_special_index;
-                               last_special_applied = -1;
-                       }
-               }
-               p++;
-       }
-
-#ifdef X11
-       cur_y += cur_y_add;
-#endif /* X11 */
-       draw_string(s);
-#ifdef NCURSES
-       if (ctx->output_methods & TO_NCURSES) {
-               printw("\n");
-       }
-#endif /* NCURSES */
-#ifdef X11
-       cur_y += font_descent();
-#endif /* X11 */
-       if (recurse && *recurse) {
-               special_index = draw_each_line_inner(recurse, special_index, last_special_needed);
-               *(recurse - 1) = SECRIT_MULTILINE_CHAR;
-       }
-       return special_index;
-}
-
-static int draw_line(char *s, int special_index)
-{
-#ifdef X11
-       if (ctx->output_methods & TO_X) {
-               return draw_each_line_inner(s, special_index, -1);
-       }
-#endif /* X11 */
-#ifdef NCURSES
-       if (ctx->output_methods & TO_NCURSES) {
-               return draw_each_line_inner(s, special_index, -1);
-       }
-#endif /* NCURSES */
-       draw_string(s);
-       UNUSED(special_index);
-       return 0;
-}
-
-static void draw_text(void)
-{
-#ifdef X11
-#ifdef HAVE_LUA
-       llua_draw_pre_hook();
-#endif /* HAVE_LUA */
-       if (ctx->output_methods & TO_X) {
-               cur_y = text_start_y;
-
-               /* draw borders */
-               if (draw_borders && window.border_width > 0) {
-                       if (stippled_borders) {
-                               char ss[2] = { stippled_borders, stippled_borders };
-                               XSetLineAttributes(display, window.gc, window.border_width, LineOnOffDash,
-                                       CapButt, JoinMiter);
-                               XSetDashes(display, window.gc, 0, ss, 2);
-                       } else {
-                               XSetLineAttributes(display, window.gc, window.border_width, LineSolid,
-                                       CapButt, JoinMiter);
-                       }
-
-                       XDrawRectangle(display, window.drawable, window.gc,
-                               text_start_x - window.border_inner_margin - window.border_width,
-                               text_start_y - window.border_inner_margin - window.border_width,
-                               text_width + window.border_inner_margin * 2 + window.border_width * 2,
-                               text_height + window.border_inner_margin * 2 + window.border_width * 2);
-               }
-
-               /* draw text */
-       }
-       setup_fonts();
-#endif /* X11 */
-#ifdef NCURSES
-       init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
-       attron(COLOR_PAIR(COLOR_WHITE));
-#endif /* NCURSES */
-       for_each_line(ctx->text_buffer, draw_line);
-#if defined(HAVE_LUA) && defined(X11)
-       llua_draw_post_hook();
-#endif /* HAVE_LUA */
-}
-
-void draw_stuff(conky_context *ctx)
-{
-#ifdef IMLIB2
-       cimlib_render(text_start_x, text_start_y, window.width, window.height);
-#endif /* IMLIB2 */
-       if (overwrite_file) {
-               overwrite_fpointer = fopen(overwrite_file, "w");
-               if(!overwrite_fpointer)
-                       NORM_ERR("Can't overwrite '%s' anymore", overwrite_file);
-       }
-       if (append_file) {
-               append_fpointer = fopen(append_file, "a");
-               if(!append_fpointer)
-                       NORM_ERR("Can't append '%s' anymore", append_file);
-       }
-#ifdef X11
-       if (ctx->output_methods & TO_X) {
-               ctx->selected_font = 0;
-               if (draw_shades && !draw_outline) {
-                       text_start_x++;
-                       text_start_y++;
-                       set_foreground_color(default_bg_color);
-                       draw_mode = BG;
-                       draw_text();
-                       text_start_x--;
-                       text_start_y--;
-               }
-
-               if (draw_outline) {
-                       int i, j;
-                       ctx->selected_font = 0;
-
-                       for (i = -1; i < 2; i++) {
-                               for (j = -1; j < 2; j++) {
-                                       if (i == 0 && j == 0) {
-                                               continue;
-                                       }
-                                       text_start_x += i;
-                                       text_start_y += j;
-                                       set_foreground_color(default_out_color);
-                                       draw_mode = OUTLINE;
-                                       draw_text();
-                                       text_start_x -= i;
-                                       text_start_y -= j;
-                               }
-                       }
-               }
-
-               set_foreground_color(default_fg_color);
-       }
-#endif /* X11 */
-       draw_mode = FG;
-       draw_text();
-#ifdef X11
-       xdbe_swap_buffers();
-       if (ctx->output_methods & TO_X) {
-#ifdef HAVE_XDBE
-#endif
-       }
-#endif /* X11 */
-       if(overwrite_fpointer) {
-               fclose(overwrite_fpointer);
-               overwrite_fpointer = 0;
-       }
-       if(append_fpointer) {
-               fclose(append_fpointer);
-               append_fpointer = 0;
-       }
-}
-
-#ifdef X11
-void clear_text(conky_context *ctx, int exposures)
-{
-#ifdef HAVE_XDBE
-       if (use_xdbe) {
-               /* The swap action is XdbeBackground, which clears */
-               return;
-       } else
-#endif
-       if (display && window.window) { // make sure these are !null
-               /* there is some extra space for borders and outlines */
-               XClearArea(display, window.window, text_start_x - window.border_inner_margin - window.border_outer_margin - window.border_width,
-                       text_start_y - window.border_inner_margin - window.border_outer_margin - window.border_width,
-                       text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2,
-                       text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2, exposures ? True : 0);
-       }
-}
-#endif /* X11 */
-
-/* update_text() generates new text and clears old text area */
-void update_text(conky_context *ctx)
-{
-#ifdef IMLIB2
-       cimlib_cleanup();
-#endif /* IMLIB2 */
-       generate_text();
-#ifdef X11
-       if (ctx->output_methods & TO_X)
-               clear_text(1);
-#endif /* X11 */
-       ctx->need_to_update = 1;
-#ifdef HAVE_LUA
-       llua_update_info(&ctx->info, update_interval);
-#endif /* HAVE_LUA */
-}
-
-void initialisation(conky_context *ctx, int argc, char** argv);
-
-       /* reload the config file */
-static void reload_config(conky_context *ctx)
-{
-       char *current_config_copy = strdup(current_config);
-       clean_up(NULL, NULL);
-       current_config = current_config_copy;
-       initialisation(ctx, argc_copy, argv_copy);
-}
-
-void clean_up(void *memtofree1, void *memtofree2)
-{
-       int i;
-
-#ifdef NCURSES
-       if(ctx->output_methods & TO_NCURSES) {
-               endwin();
-       }
-#endif
-       conftree_empty(currentconffile);
-       currentconffile = NULL;
-       if (memtofree1) {
-               free(memtofree1);
-       }
-       if (memtofree2) {
-               free(memtofree2);
-       }
-       timed_thread_destroy_registered_threads();
-
-       if (ctx->info.cpu_usage) {
-               free(ctx->info.cpu_usage);
-               ctx->info.cpu_usage = NULL;
-       }
-#ifdef X11
-       if (x_initialised == YES) {
-               XClearArea(display, window.window, text_start_x - window.border_inner_margin - window.border_outer_margin - window.border_width,
-                               text_start_y - window.border_inner_margin - window.border_outer_margin - window.border_width,
-                               text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2,
-                               text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2, 0);
-               destroy_window();
-               free_fonts();
-               if(x11_stuff.region) {
-                       XDestroyRegion(x11_stuff.region);
-                       x11_stuff.region = NULL;
-               }
-               XCloseDisplay(display);
-               display = NULL;
-               if(ctx->info.x11.desktop.all_names) {
-                       free(ctx->info.x11.desktop.all_names);
-                       ctx->info.x11.desktop.all_names = NULL;
-               }
-               if (ctx->info.x11.desktop.name) {
-                       free(ctx->info.x11.desktop.name);
-                       ctx->info.x11.desktop.name = NULL;
-               }
-               x_initialised = NO;
-       } else {
-               free(ctx->fonts);       //in set_default_configurations a font is set but not loaded
-               font_count = -1;
-       }
-
-#endif /* X11 */
-
-       for (i = 0; i < MAX_TEMPLATES; i++) {
-               if (template[i]) {
-                       free(template[i]);
-                       template[i] = NULL;
-               }
-       }
-
-       free_text_objects(&global_root_object, 0);
-       if (ctx->tmpstring1) {
-               free(ctx->tmpstring1);
-               ctx->tmpstring1 = 0;
-       }
-       if (ctx->tmpstring2) {
-               free(ctx->tmpstring2);
-               ctx->tmpstring2 = 0;
-       }
-       if (ctx->text_buffer) {
-               free(ctx->text_buffer);
-               ctx->text_buffer = 0;
-       }
-
-       if (global_text) {
-               free(global_text);
-               global_text = 0;
-       }
-
-       free(current_config);
-       current_config = 0;
-
-#ifdef TCP_PORT_MONITOR
-       tcp_portmon_clear();
-#endif
-#ifdef HAVE_CURL
-       ccurl_free_info();
-#endif
-#ifdef RSS
-       rss_free_info();
-#endif
-#ifdef WEATHER
-       weather_free_info();
-#endif
-#ifdef HAVE_LUA
-       llua_shutdown_hook();
-       llua_close();
-#endif /* HAVE_LUA */
-#ifdef IMLIB2
-       cimlib_deinit();
-#endif /* IMLIB2 */
-#ifdef XOAP
-       xmlCleanupParser();
-#endif /* XOAP */
-
-       if (specials) {
-               for (i = 0; i < special_count; i++) {
-                       if (specials[i].type == GRAPH) {
-                               free(specials[i].graph);
-                       }
-               }
-               free(specials);
-               specials = NULL;
-       }
-
-       clear_net_stats();
-       clear_diskio_stats();
-       clear_cpu_stats();
-}
-
-static int string_to_bool(const char *s)
-{
-       if (!s) {
-               // Assumes an option without a true/false means true
-               return 1;
-       } else if (strcasecmp(s, "yes") == EQUAL) {
-               return 1;
-       } else if (strcasecmp(s, "true") == EQUAL) {
-               return 1;
-       } else if (strcasecmp(s, "1") == EQUAL) {
-               return 1;
-       }
-       return 0;
-}
-
-#ifdef X11
-enum alignment string_to_alignment(const char *s)
-{
-       if (strcasecmp(s, "top_left") == EQUAL) {
-               return TOP_LEFT;
-       } else if (strcasecmp(s, "top_right") == EQUAL) {
-               return TOP_RIGHT;
-       } else if (strcasecmp(s, "top_middle") == EQUAL) {
-               return TOP_MIDDLE;
-       } else if (strcasecmp(s, "bottom_left") == EQUAL) {
-               return BOTTOM_LEFT;
-       } else if (strcasecmp(s, "bottom_right") == EQUAL) {
-               return BOTTOM_RIGHT;
-       } else if (strcasecmp(s, "bottom_middle") == EQUAL) {
-               return BOTTOM_MIDDLE;
-       } else if (strcasecmp(s, "middle_left") == EQUAL) {
-               return MIDDLE_LEFT;
-       } else if (strcasecmp(s, "middle_right") == EQUAL) {
-               return MIDDLE_RIGHT;
-       } else if (strcasecmp(s, "tl") == EQUAL) {
-               return TOP_LEFT;
-       } else if (strcasecmp(s, "tr") == EQUAL) {
-               return TOP_RIGHT;
-       } else if (strcasecmp(s, "tm") == EQUAL) {
-               return TOP_MIDDLE;
-       } else if (strcasecmp(s, "bl") == EQUAL) {
-               return BOTTOM_LEFT;
-       } else if (strcasecmp(s, "br") == EQUAL) {
-               return BOTTOM_RIGHT;
-       } else if (strcasecmp(s, "bm") == EQUAL) {
-               return BOTTOM_MIDDLE;
-       } else if (strcasecmp(s, "ml") == EQUAL) {
-               return MIDDLE_LEFT;
-       } else if (strcasecmp(s, "mr") == EQUAL) {
-               return MIDDLE_RIGHT;
-       } else if (strcasecmp(s, "none") == EQUAL) {
-               return NONE;
-       }
-       return TOP_LEFT;
-}
-#endif /* X11 */
-
-#ifdef X11
-static void set_default_configurations_for_x(void)
-{
-       default_fg_color = WhitePixel(display, screen);
-       default_bg_color = BlackPixel(display, screen);
-       default_out_color = BlackPixel(display, screen);
-       color0 = default_fg_color;
-       color1 = default_fg_color;
-       color2 = default_fg_color;
-       color3 = default_fg_color;
-       color4 = default_fg_color;
-       color5 = default_fg_color;
-       color6 = default_fg_color;
-       color7 = default_fg_color;
-       color8 = default_fg_color;
-       color9 = default_fg_color;
-       current_text_color = default_fg_color;
-}
-#endif /* X11 */
-
-void set_default_configurations(conky_context *ctx)
-{
-       int i;
-#ifdef MPD
-       char *mpd_env_host;
-       char *mpd_env_port;
-#endif
-       ctx->text_buffer_size = DEFAULT_TEXT_BUFFER_SIZE;
-       update_uname();
-       ctx->info.cpu_avg_samples = 2;
-       ctx->info.net_avg_samples = 2;
-       ctx->info.diskio_avg_samples = 2;
-       format_human_readable = 1;
-#ifdef MPD
-       mpd_env_host = getenv("MPD_HOST");
-       mpd_env_port = getenv("MPD_PORT");
-
-       if (!mpd_env_host || !strlen(mpd_env_host)) {
-               mpd_set_host("localhost");
-       } else {
-               /* MPD_HOST environment variable is set */
-               char *mpd_hostpart = strchr(mpd_env_host, '@');
-               if (!mpd_hostpart) {
-                       mpd_set_host(mpd_env_host);
-               } else {
-                       /* MPD_HOST contains a password */
-                       char mpd_password[mpd_hostpart - mpd_env_host + 1];
-                       snprintf(mpd_password, mpd_hostpart - mpd_env_host + 1, "%s", mpd_env_host);
-
-                       if (!strlen(mpd_hostpart + 1)) {
-                               mpd_set_host("localhost");
-                       } else {
-                               mpd_set_host(mpd_hostpart + 1);
-                       }
-
-                       mpd_set_password(mpd_password, 1);
-               }
-       }
-
-
-       if (!mpd_env_port || mpd_set_port(mpd_env_port)) {
-               /* failed to set port from environment variable */
-               mpd_set_port("6600");
-       }
-#endif
-#ifdef XMMS2
-       ctx->info.xmms2.artist = NULL;
-       ctx->info.xmms2.album = NULL;
-       ctx->info.xmms2.title = NULL;
-       ctx->info.xmms2.genre = NULL;
-       ctx->info.xmms2.comment = NULL;
-       ctx->info.xmms2.url = NULL;
-       ctx->info.xmms2.status = NULL;
-       ctx->info.xmms2.playlist = NULL;
-#endif
-       use_spacer = NO_SPACER;
-#ifdef X11
-       ctx->output_methods = TO_X;
-#else
-       ctx->output_methods = TO_STDOUT;
-#endif
-#ifdef X11
-       show_graph_scale = 0;
-       show_graph_range = 0;
-       draw_shades = 1;
-       draw_borders = 0;
-       draw_graph_borders = 1;
-       draw_outline = 0;
-       set_first_font("6x10");
-       gap_x = 5;
-       gap_y = 60;
-       minimum_width = 5;
-       minimum_height = 5;
-       maximum_width = 0;
-#ifdef OWN_WINDOW
-       own_window = 0;
-       window.type = TYPE_NORMAL;
-       window.hints = 0;
-       strcpy(window.class_name, PACKAGE_NAME);
-       sprintf(window.title, PACKAGE_NAME" (%s)", ctx->info.uname_s.nodename);
-#endif
-       stippled_borders = 0;
-       window.border_inner_margin = 3;
-       window.border_outer_margin = 1;
-       window.border_width = 1;
-       text_alignment = BOTTOM_LEFT;
-       ctx->info.x11.monitor.number = 1;
-       ctx->info.x11.monitor.current = 0;
-       ctx->info.x11.desktop.current = 1; 
-       ctx->info.x11.desktop.number = 1;
-       ctx->info.x11.desktop.nitems = 0;
-       ctx->info.x11.desktop.all_names = NULL; 
-       ctx->info.x11.desktop.name = NULL; 
-#endif /* X11 */
-
-       for (i = 0; i < MAX_TEMPLATES; i++) {
-               if (template[i])
-                       free(template[i]);
-               template[i] = strdup("");
-       }
-
-       free(current_mail_spool);
-       {
-               char buf[256];
-
-               variable_substitute(MAIL_FILE, buf, 256);
-               if (buf[0] != '\0') {
-                       current_mail_spool = strndup(buf, text_buffer_size);
-               }
-       }
-
-       no_buffers = 1;
-       set_update_interval(3);
-       update_interval_bat = NOBATTERY;
-       ctx->info.music_player_interval = 1.0;
-       stuff_in_uppercase = 0;
-       ctx->info.users.number = 1;
-
-#ifdef TCP_PORT_MONITOR
-       /* set default connection limit */
-       tcp_portmon_set_max_connections(0);
-#endif
-}
-
-/* returns 1 if you can overwrite or create the file at 'path' */
-static _Bool overwrite_works(const char *path)
-{
-       FILE *filepointer;
-
-       if (!(filepointer = fopen(path, "w")))
-               return 0;
-       fclose(filepointer);
-       return 1;
-}
-
-/* returns 1 if you can append or create the file at 'path' */
-static _Bool append_works(const char *path)
-{
-       FILE *filepointer;
-
-       if (!(filepointer = fopen(path, "a")))
-               return 0;
-       fclose(filepointer);
-       return 1;
-}
-
-#ifdef X11
-#ifdef DEBUG
-/* WARNING, this type not in Xlib spec */
-int x11_error_handler(Display *d, XErrorEvent *err)
-       __attribute__((noreturn));
-int x11_error_handler(Display *d, XErrorEvent *err)
-{
-       NORM_ERR("X Error: type %i Display %lx XID %li serial %lu error_code %i request_code %i minor_code %i other Display: %lx\n",
-                       err->type,
-                       (long unsigned)err->display,
-                       (long)err->resourceid,
-                       err->serial,
-                       err->error_code,
-                       err->request_code,
-                       err->minor_code,
-                       (long unsigned)d
-                       );
-       abort();
-}
-
-int x11_ioerror_handler(Display *d)
-       __attribute__((noreturn));
-int x11_ioerror_handler(Display *d)
-{
-       NORM_ERR("X Error: Display %lx\n",
-                       (long unsigned)d
-                       );
-       abort();
-}
-#endif /* DEBUG */
-
-static void X11_initialisation(conky_context *ctx)
-{
-       if (x_initialised == YES) return;
-       ctx->output_methods |= TO_X;
-       init_X11(disp);
-       set_default_configurations_for_x();
-       x_initialised = YES;
-#ifdef DEBUG
-       _Xdebug = 1;
-       /* WARNING, this type not in Xlib spec */
-       XSetErrorHandler(&x11_error_handler);
-       XSetIOErrorHandler(&x11_ioerror_handler);
-#endif /* DEBUG */
-}
-
-void X11_create_window(conky_context *ctx)
-{
-       if (ctx->output_methods & TO_X) {
-#ifdef OWN_WINDOW
-               init_window(own_window, text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2,
-                               text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2, set_transparent, background_colour,
-                               ctx->xargv, ctx->xargc);
-#else /* OWN_WINDOW */
-               init_window(0, text_width + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2,
-                               text_height + window.border_inner_margin * 2 + window.border_outer_margin * 2 + window.border_width * 2, set_transparent, 0,
-                               ctx->xargv, ctx->xargc);
-#endif /* OWN_WINDOW */
-
-               setup_fonts();
-               load_fonts();
-               update_text_area();     /* to position text/window on screen */
-
-#ifdef OWN_WINDOW
-               if (own_window && !fixed_pos) {
-                       XMoveWindow(display, window.window, window.x, window.y);
-               }
-               if (own_window) {
-                       set_transparent_background(window.window);
-               }
-#endif
-
-               create_gc();
-
-               draw_stuff();
-
-               x11_stuff.region = XCreateRegion();
-#ifdef HAVE_XDAMAGE
-               if (!XDamageQueryExtension(display, &x11_stuff.event_base, &x11_stuff.error_base)) {
-                       NORM_ERR("Xdamage extension unavailable");
-               }
-               x11_stuff.damage = XDamageCreate(display, window.window, XDamageReportNonEmpty);
-               x11_stuff.region2 = XFixesCreateRegionFromWindow(display, window.window, 0);
-               x11_stuff.part = XFixesCreateRegionFromWindow(display, window.window, 0);
-#endif /* HAVE_XDAMAGE */
-
-               ctx->selected_font = 0;
-               update_text_area();     /* to get initial size of the window */
-       }
-#ifdef HAVE_LUA
-       /* setup lua window globals */
-       llua_setup_window_table(text_start_x, text_start_y, text_width, text_height);
-#endif /* HAVE_LUA */
-}
-#endif /* X11 */
-
-#define CONF_ERR NORM_ERR("%s: %d: config file error", f, line)
-#define CONF_ERR2(a) NORM_ERR("%s: %d: config file error: %s", f, line, a)
-#define CONF2(a) if (strcasecmp(name, a) == 0)
-#define CONF(a) else CONF2(a)
-#define CONF3(a, b) else if (strcasecmp(name, a) == 0 \
-               || strcasecmp(name, b) == 0)
-#define CONF_CONTINUE 1
-#define CONF_BREAK 2
-#define CONF_BUFF_SIZE 512
-
-static FILE *open_config_file(const char *f)
-{
-#ifdef CONFIG_OUTPUT
-       if (!strcmp(f, "==builtin==")) {
-               return conf_cookie_open();
-       } else
-#endif /* CONFIG_OUTPUT */
-               return fopen(f, "r");
-}
-
-static int do_config_step(int *line, FILE *fp, char *buf, char **name, char **value)
-{
-       char *p, *p2;
-       (*line)++;
-       if (fgets(buf, CONF_BUFF_SIZE, fp) == NULL) {
-               return CONF_BREAK;
-       }
-       remove_comments(buf);
-
-       p = buf;
-
-       /* skip spaces */
-       while (*p && isspace((int) *p)) {
-               p++;
-       }
-       if (*p == '\0') {
-               return CONF_CONTINUE;   /* empty line */
-       }
-
-       *name = p;
-
-       /* skip name */
-       p2 = p;
-       while (*p2 && !isspace((int) *p2)) {
-               p2++;
-       }
-       if (*p2 != '\0') {
-               *p2 = '\0';     /* break at name's end */
-               p2++;
-       }
-
-       /* get value */
-       if (*p2) {
-               p = p2;
-               while (*p && isspace((int) *p)) {
-                       p++;
-               }
-
-               *value = p;
-
-               p2 = *value + strlen(*value);
-               while (isspace((int) *(p2 - 1))) {
-                       *--p2 = '\0';
-               }
-       } else {
-               *value = 0;
-       }
-       return 0;
-}
-
-char load_config_file(conky_context *ctx, const char *f)
-{
-       int line = 0;
-       FILE *fp;
-
-       fp = open_config_file(f);
-       if (!fp) {
-               return FALSE;
-       }
-       DBGP("reading contents from config file '%s'", f);
-
-       while (!feof(fp)) {
-               char buff[CONF_BUFF_SIZE], *name, *value;
-               int ret = do_config_step(&line, fp, buff, &name, &value);
-               if (ret == CONF_BREAK) {
-                       break;
-               } else if (ret == CONF_CONTINUE) {
-                       continue;
-               }
-
-#ifdef X11
-               CONF2("out_to_x") {
-                       /* don't listen if X is already initialised or
-                        * if we already know we don't want it */
-                       if(x_initialised != YES) {
-                               if (string_to_bool(value)) {
-                                       ctx->output_methods &= TO_X;
-                               } else {
-                                       ctx->output_methods &= ~TO_X;
-                                       x_initialised = NEVER;
-                               }
-                       }
-               }
-               CONF("display") {
-                       if (!value || x_initialised == YES) {
-                               CONF_ERR;
-                       } else {
-                               if (disp)
-                                       free(disp);
-                               disp = strdup(value);
-                       }
-               }
-               CONF("alignment") {
-#ifdef OWN_WINDOW
-                       if (window.type == TYPE_DOCK)
-                               ;
-                       else
-#endif /*OWN_WINDOW */
-                       if (value) {
-                               int a = string_to_alignment(value);
-
-                               if (a <= 0) {
-                                       CONF_ERR;
-                               } else {
-                                       text_alignment = a;
-                               }
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("background") {
-                       fork_to_background = string_to_bool(value);
-               }
-#else
-               CONF2("background") {
-                       fork_to_background = string_to_bool(value);
-               }
-#endif /* X11 */
-#ifdef X11
-               CONF("show_graph_scale") {
-                       show_graph_scale = string_to_bool(value);
-               }
-               CONF("show_graph_range") {
-                       show_graph_range = string_to_bool(value);
-               }
-               CONF("border_inner_margin") {
-                       if (value) {
-                               window.border_inner_margin = strtol(value, 0, 0);
-                               if (window.border_inner_margin < 0) window.border_inner_margin = 0;
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("border_outer_margin") {
-                       if (value) {
-                               window.border_outer_margin = strtol(value, 0, 0);
-                               if (window.border_outer_margin < 0) window.border_outer_margin = 0;
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("border_width") {
-                       if (value) {
-                               window.border_width = strtol(value, 0, 0);
-                               if (window.border_width < 0) window.border_width = 0;
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-#endif /* X11 */
-#define TEMPLATE_CONF(n) \
-               CONF("template"#n) { \
-                       if (value) { \
-                               free(template[n]); \
-                               template[n] = strdup(value); \
-                       } else { \
-                               CONF_ERR; \
-                       } \
-               }
-               TEMPLATE_CONF(0)
-               TEMPLATE_CONF(1)
-               TEMPLATE_CONF(2)
-               TEMPLATE_CONF(3)
-               TEMPLATE_CONF(4)
-               TEMPLATE_CONF(5)
-               TEMPLATE_CONF(6)
-               TEMPLATE_CONF(7)
-               TEMPLATE_CONF(8)
-               TEMPLATE_CONF(9)
-               CONF("imap") {
-                       if (value) {
-                               ctx->info.mail = parse_mail_args(IMAP_TYPE, value);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("pop3") {
-                       if (value) {
-                               ctx->info.mail = parse_mail_args(POP3_TYPE, value);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("default_bar_size") {
-                       char err = 0;
-                       if (value) {
-                               if (sscanf(value, "%d %d", &default_bar_width, &default_bar_height) != 2) {
-                                       err = 1;
-                               }
-                       } else {
-                               err = 1;
-                       }
-                       if (err) {
-                               CONF_ERR2("default_bar_size takes 2 integer arguments (ie. 'default_bar_size 0 6')")
-                       }
-               }
-#ifdef X11
-               CONF("default_graph_size") {
-                       char err = 0;
-                       if (value) {
-                               if (sscanf(value, "%d %d", &default_graph_width, &default_graph_height) != 2) {
-                                       err = 1;
-                               }
-                       } else {
-                               err = 1;
-                       }
-                       if (err) {
-                               CONF_ERR2("default_graph_size takes 2 integer arguments (ie. 'default_graph_size 0 6')")
-                       }
-               }
-               CONF("default_gauge_size") {
-                       char err = 0;
-                       if (value) {
-                               if (sscanf(value, "%d %d", &default_gauge_width, &default_gauge_height) != 2) {
-                                       err = 1;
-                               }
-                       } else {
-                               err = 1;
-                       }
-                       if (err) {
-                               CONF_ERR2("default_gauge_size takes 2 integer arguments (ie. 'default_gauge_size 0 6')")
-                       }
-               }
-#endif
-#ifdef MPD
-               CONF("mpd_host") {
-                       if (value) {
-                               mpd_set_host(value);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("mpd_port") {
-                       if (value && mpd_set_port(value)) {
-                               CONF_ERR;
-                       }
-               }
-               CONF("mpd_password") {
-                       if (value) {
-                               mpd_set_password(value, 0);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-#endif
-               CONF("music_player_interval") {
-                       if (value) {
-                               ctx->info.music_player_interval = strtod(value, 0);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-#ifdef __OpenBSD__
-               CONF("sensor_device") {
-                       if (value) {
-                               sensor_device = strtol(value, 0, 0);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-#endif
-               CONF("cpu_avg_samples") {
-                       if (value) {
-                               cpu_avg_samples = strtol(value, 0, 0);
-                               if (cpu_avg_samples < 1 || cpu_avg_samples > 14) {
-                                       CONF_ERR;
-                               } else {
-                                       ctx->info.cpu_avg_samples = cpu_avg_samples;
-                               }
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("net_avg_samples") {
-                       if (value) {
-                               net_avg_samples = strtol(value, 0, 0);
-                               if (net_avg_samples < 1 || net_avg_samples > 14) {
-                                       CONF_ERR;
-                               } else {
-                                       ctx->info.net_avg_samples = net_avg_samples;
-                               }
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("diskio_avg_samples") {
-                       if (value) {
-                               diskio_avg_samples = strtol(value, 0, 0);
-                               if (diskio_avg_samples < 1 || diskio_avg_samples > 14) {
-                                       CONF_ERR;
-                               } else {
-                                       ctx->info.diskio_avg_samples = diskio_avg_samples;
-                               }
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-
-#ifdef HAVE_XDBE
-               CONF("double_buffer") {
-                       use_xdbe = string_to_bool(value);
-               }
-#endif
-#ifdef X11
-               CONF("override_utf8_locale") {
-                       utf8_mode = string_to_bool(value);
-               }
-               CONF("draw_borders") {
-                       draw_borders = string_to_bool(value);
-               }
-               CONF("draw_graph_borders") {
-                       draw_graph_borders = string_to_bool(value);
-               }
-               CONF("draw_shades") {
-                       draw_shades = string_to_bool(value);
-               }
-               CONF("draw_outline") {
-                       draw_outline = string_to_bool(value);
-               }
-#endif /* X11 */
-               CONF("out_to_console") {
-                       if(string_to_bool(value)) {
-                               ctx->output_methods |= TO_STDOUT;
-                       } else {
-                               ctx->output_methods &= ~TO_STDOUT;
-                       }
-               }
-               CONF("extra_newline") {
-                       extra_newline = string_to_bool(value);
-               }
-               CONF("out_to_stderr") {
-                       if(string_to_bool(value))
-                               ctx->output_methods |= TO_STDERR;
-               }
-#ifdef NCURSES
-               CONF("out_to_ncurses") {
-                       if(string_to_bool(value)) {
-                               initscr();
-                               start_color();
-                               ctx->output_methods |= TO_NCURSES;
-                       }
-               }
-#endif
-               CONF("overwrite_file") {
-                       if(overwrite_file) {
-                               free(overwrite_file);
-                               overwrite_file = 0;
-                       }
-                       if(overwrite_works(value)) {
-                               overwrite_file = strdup(value);
-                               ctx->output_methods |= OVERWRITE_FILE;
-                       } else
-                               NORM_ERR("overwrite_file won't be able to create/overwrite '%s'", value);
-               }
-               CONF("append_file") {
-                       if(append_file) {
-                               free(append_file);
-                               append_file = 0;
-                       }
-                       if(append_works(value)) {
-                               append_file = strdup(value);
-                               ctx->output_methods |= APPEND_FILE;
-                       } else
-                               NORM_ERR("append_file won't be able to create/append '%s'", value);
-               }
-               CONF("use_spacer") {
-                       if (value) {
-                               if (strcasecmp(value, "left") == EQUAL) {
-                                       use_spacer = LEFT_SPACER;
-                               } else if (strcasecmp(value, "right") == EQUAL) {
-                                       use_spacer = RIGHT_SPACER;
-                               } else if (strcasecmp(value, "none") == EQUAL) {
-                                       use_spacer = NO_SPACER;
-                               } else {
-                                       use_spacer = string_to_bool(value);
-                                       NORM_ERR("use_spacer should have an argument of left, right, or"
-                                               " none.  '%s' seems to be some form of '%s', so"
-                                               " defaulting to %s.", value,
-                                               use_spacer ? "true" : "false",
-                                               use_spacer ? "right" : "none");
-                                       if (use_spacer) {
-                                               use_spacer = RIGHT_SPACER;
-                                       } else {
-                                               use_spacer = NO_SPACER;
-                                       }
-                               }
-                       } else {
-                               NORM_ERR("use_spacer should have an argument. Defaulting to right.");
-                               use_spacer = RIGHT_SPACER;
-                       }
-               }
-#ifdef X11
-#ifdef XFT
-               CONF("use_xft") {
-                       use_xft = string_to_bool(value);
-               }
-               CONF("font") {
-                       if (value) {
-                               set_first_font(value);
-                       }
-               }
-               CONF("xftalpha") {
-                       if (value && font_count >= 0) {
-                               ctx->fonts[0].font_alpha = atof(value) * 65535.0;
-                       }
-               }
-               CONF("xftfont") {
-                       if (use_xft) {
-#else
-               CONF("use_xft") {
-                       if (string_to_bool(value)) {
-                               NORM_ERR("Xft not enabled at compile time");
-                       }
-               }
-               CONF("xftfont") {
-                       /* xftfont silently ignored when no Xft */
-               }
-               CONF("xftalpha") {
-                       /* xftalpha is silently ignored when no Xft */
-               }
-               CONF("font") {
-#endif
-                       if (value) {
-                               set_first_font(value);
-                       }
-#ifdef XFT
-                       }
-#endif
-               }
-               CONF("gap_x") {
-                       if (value) {
-                               gap_x = atoi(value);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("gap_y") {
-                       if (value) {
-                               gap_y = atoi(value);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-#endif /* X11 */
-               CONF("mail_spool") {
-                       if (value) {
-                               char buffer[256];
-
-                               variable_substitute(value, buffer, 256);
-
-                               if (buffer[0] != '\0') {
-                                       if (current_mail_spool) {
-                                               free(current_mail_spool);
-                                       }
-                                       current_mail_spool = strndup(buffer, text_buffer_size);
-                               }
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-#ifdef X11
-               CONF("minimum_size") {
-                       if (value) {
-                               if (sscanf(value, "%d %d", &minimum_width, &minimum_height)
-                                               != 2) {
-                                       if (sscanf(value, "%d", &minimum_width) != 1) {
-                                               CONF_ERR;
-                                       }
-                               }
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("maximum_width") {
-                       if (value) {
-                               if (sscanf(value, "%d", &maximum_width) != 1) {
-                                       CONF_ERR;
-                               }
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-#endif /* X11 */
-               CONF("no_buffers") {
-                       no_buffers = string_to_bool(value);
-               }
-               CONF("top_name_width") {
-                       if (value) {
-                               if (sscanf(value, "%u", &top_name_width) != 1) {
-                                       CONF_ERR;
-                               }
-                       } else {
-                               CONF_ERR;
-                       }
-                       if (top_name_width >= max_user_text) {
-                               top_name_width = max_user_text - 1;
-                       }
-               }
-               CONF("top_cpu_separate") {
-                       cpu_separate = string_to_bool(value);
-               }
-               CONF("short_units") {
-                       short_units = string_to_bool(value);
-               }
-               CONF("format_human_readable") {
-                       format_human_readable = string_to_bool(value);
-               }
-               CONF("pad_percents") {
-                       pad_percents = atoi(value);
-               }
-#ifdef X11
-#ifdef OWN_WINDOW
-               CONF("own_window") {
-                       if (value) {
-                               own_window = string_to_bool(value);
-                       }
-               }
-               CONF("own_window_class") {
-                       if (value) {
-                               memset(window.class_name, 0, sizeof(window.class_name));
-                               strncpy(window.class_name, value,
-                                               sizeof(window.class_name) - 1);
-                       }
-               }
-               CONF("own_window_title") {
-                       if (value) {
-                               memset(window.title, 0, sizeof(window.title));
-                               strncpy(window.title, value, sizeof(window.title) - 1);
-                       }
-               }
-               CONF("own_window_transparent") {
-                       if (value) {
-                               set_transparent = string_to_bool(value);
-                       }
-               }
-               CONF("own_window_hints") {
-                       if (value) {
-                               char *p_hint, *p_save;
-                               char delim[] = ", ";
-
-                               /* tokenize the value into individual hints */
-                               if ((p_hint = strtok_r(value, delim, &p_save)) != NULL) {
-                                       do {
-                                               /* fprintf(stderr, "hint [%s] parsed\n", p_hint); */
-                                               if (strncmp(p_hint, "undecorate", 10) == EQUAL) {
-                                                       SET_HINT(window.hints, HINT_UNDECORATED);
-                                               } else if (strncmp(p_hint, "below", 5) == EQUAL) {
-                                                       SET_HINT(window.hints, HINT_BELOW);
-                                               } else if (strncmp(p_hint, "above", 5) == EQUAL) {
-                                                       SET_HINT(window.hints, HINT_ABOVE);
-                                               } else if (strncmp(p_hint, "sticky", 6) == EQUAL) {
-                                                       SET_HINT(window.hints, HINT_STICKY);
-                                               } else if (strncmp(p_hint, "skip_taskbar", 12) == EQUAL) {
-                                                       SET_HINT(window.hints, HINT_SKIP_TASKBAR);
-                                               } else if (strncmp(p_hint, "skip_pager", 10) == EQUAL) {
-                                                       SET_HINT(window.hints, HINT_SKIP_PAGER);
-                                               } else {
-                                                       CONF_ERR;
-                                               }
-
-                                               p_hint = strtok_r(NULL, delim, &p_save);
-                                       } while (p_hint != NULL);
-                               }
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("own_window_type") {
-                       if (value) {
-                               if (strncmp(value, "normal", 6) == EQUAL) {
-                                       window.type = TYPE_NORMAL;
-                               } else if (strncmp(value, "desktop", 7) == EQUAL) {
-                                       window.type = TYPE_DESKTOP;
-                               } else if (strncmp(value, "dock", 4) == EQUAL) {
-                                       window.type = TYPE_DOCK;
-                                       text_alignment = TOP_LEFT;
-                               } else if (strncmp(value, "panel", 5) == EQUAL) {
-                                       window.type = TYPE_PANEL;
-                               } else if (strncmp(value, "override", 8) == EQUAL) {
-                                       window.type = TYPE_OVERRIDE;
-                               } else {
-                                       CONF_ERR;
-                               }
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-#endif
-               CONF("stippled_borders") {
-                       if (value) {
-                               stippled_borders = strtol(value, 0, 0);
-                       } else {
-                               stippled_borders = 4;
-                       }
-               }
-#ifdef IMLIB2
-               CONF("imlib_cache_size") {
-                       if (value) {
-                               cimlib_set_cache_size(atoi(value));
-                       }
-               }
-               CONF("imlib_cache_flush_interval") {
-                       if (value) {
-                               cimlib_set_cache_flush_interval(atoi(value));
-                       }
-               }
-#endif /* IMLIB2 */
-#endif /* X11 */
-               CONF("update_interval_on_battery") {
-                       if (value) {
-                               update_interval_bat = strtod(value, 0);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("update_interval") {
-                       if (value) {
-                               set_update_interval(strtod(value, 0));
-                       } else {
-                               CONF_ERR;
-                       }
-                       if (ctx->info.music_player_interval == 0) {
-                               // default to update_interval
-                               ctx->info.music_player_interval = ctx->update_interval;
-                       }
-               }
-               CONF("total_run_times") {
-                       if (value) {
-                               ctx->total_run_times = strtod(value, 0);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("uppercase") {
-                       stuff_in_uppercase = string_to_bool(value);
-               }
-               CONF("max_specials") {
-                       if (value) {
-                               max_specials = atoi(value);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("max_user_text") {
-                       if (value) {
-                               max_user_text = atoi(value);
-                       } else {
-                               CONF_ERR;
-                       }
+               if (strncmp(p, "$template", 9) && strncmp(p, "${template", 10)) {
+                       *(o++) = *(p++);
+                       continue;
                }
-               CONF("text_buffer_size") {
-                       if (value) {
-                               text_buffer_size = atoi(value);
-                               if (text_buffer_size < DEFAULT_TEXT_BUFFER_SIZE) {
-                                       NORM_ERR("text_buffer_size must be >=%i bytes", DEFAULT_TEXT_BUFFER_SIZE);
-                                       text_buffer_size = DEFAULT_TEXT_BUFFER_SIZE;
-                               }
+
+               if (*(p + 1) == '{') {
+                       p += 2;
+                       templ = p;
+                       while (*p && !isspace(*p) && *p != '{' && *p != '}')
+                               p++;
+                       if (*p == '}')
+                               args = NULL;
+                       else
+                               args = p;
+
+                       stack = 1;
+                       while (*p && stack > 0) {
+                               if (*p == '{')
+                                       stack++;
+                               else if (*p == '}')
+                                       stack--;
+                               p++;
+                       }
+                       if (stack == 0) {
+                               // stack is empty. that means the previous char was }, so we zero it
+                               *(p - 1) = '\0';
                        } else {
-                               CONF_ERR;
+                               // we ran into the end of string without finding a closing }, bark
+                               CRIT_ERR(NULL, NULL, "cannot find a closing '}' in template expansion");
                        }
+               } else {
+                       templ = p + 1;
+                       while (*p && !isspace(*p))
+                               p++;
+                       args = NULL;
+               }
+               tmpl_out = handle_template(templ, args);
+               if (tmpl_out) {
+                       outlen += strlen(tmpl_out);
+                       *o = '\0';
+                       outbuf = realloc(outbuf, outlen * sizeof(char));
+                       strcat (outbuf, tmpl_out);
+                       free(tmpl_out);
+                       o = outbuf + strlen(outbuf);
+               } else {
+                       NORM_ERR("failed to handle template '%s' with args '%s'", templ, args);
                }
-               CONF("text") {
-#ifdef X11
-                       if (ctx->output_methods & TO_X) {
-                               X11_initialisation();
-                       }
-#endif
+       }
+       *o = '\0';
+       outbuf = realloc(outbuf, (strlen(outbuf) + 1) * sizeof(char));
+       free(indup);
+       return outbuf;
+}
+
+static int text_contains_templates(const char *text)
+{
+       if (strcasestr(text, "${template") != NULL)
+               return 1;
+       if (strcasestr(text, "$template") != NULL)
+               return 1;
+       return 0;
+}
+
+/*
+ * - assumes that *string is '#'
+ * - removes the part from '#' to the end of line ('\n' or '\0')
+ * - it removes the '\n'
+ * - copies the last char into 'char *last' argument, which should be a pointer
+ *   to a char rather than a string.
+ */
+static size_t remove_comment(char *string, char *last)
+{
+       char *end = string;
+       while (*end != '\0' && *end != '\n') {
+               ++end;
+       }
+       if (last) *last = *end;
+       if (*end == '\n') end++;
+       strfold(string, end - string);
+       return end - string;
+}
+
+size_t remove_comments(char *string)
+{
+       char *curplace;
+       size_t folded = 0;
+       for (curplace = string; *curplace != 0; curplace++) {
+               if (*curplace == '\\' && *(curplace + 1) == '#') {
+                       // strcpy can't be used for overlapping strings
+                       strfold(curplace, 1);
+                       folded += 1;
+               } else if (*curplace == '#') {
+                       folded += remove_comment(curplace, 0);
+               }
+       }
+       return folded;
+}
+
+int extract_variable_text_internal(struct text_object *retval, const char *const_p)
+{
+       struct text_object *obj;
+       char *p, *s, *orig_p;
+       long line;
+       void *ifblock_opaque = NULL;
+       char *tmp_p;
+       char *arg = 0;
+       size_t len = 0;
+
+       p = strndup(const_p, max_user_text - 1);
+       while (text_contains_templates(p)) {
+               char *tmp;
+               tmp = find_and_replace_templates(p);
+               free(p);
+               p = tmp;
+       }
+       s = orig_p = p;
+
+       if (strcmp(p, const_p)) {
+               DBGP("replaced all templates in text: input is\n'%s'\noutput is\n'%s'", const_p, p);
+       } else {
+               DBGP("no templates to replace");
+       }
 
-                       if (global_text) {
-                               free(global_text);
-                               global_text = 0;
+       memset(retval, 0, sizeof(struct text_object));
+
+       line = global_text_lines;
+
+       while (*p) {
+               if (*p == '\n') {
+                       line++;
+               }
+               if (*p == '$') {
+                       *p = '\0';
+                       obj = create_plain_text(s);
+                       if (obj != NULL) {
+                               append_object(retval, obj);
                        }
+                       *p = '$';
+                       p++;
+                       s = p;
 
-                       global_text = (char *) malloc(1);
-                       global_text[0] = '\0';
+                       if (*p != '$') {
+                               char buf[256];
+                               const char *var;
 
-                       while (!feof(fp)) {
-                               unsigned int l = strlen(global_text);
-                               unsigned int bl;
-                               char buf[CONF_BUFF_SIZE];
+                               /* variable is either $foo or ${foo} */
+                               if (*p == '{') {
+                                       unsigned int brl = 1, brr = 0;
 
-                               if (fgets(buf, CONF_BUFF_SIZE, fp) == NULL) {
-                                       break;
+                                       p++;
+                                       s = p;
+                                       while (*p && brl != brr) {
+                                               if (*p == '{') {
+                                                       brl++;
+                                               }
+                                               if (*p == '}') {
+                                                       brr++;
+                                               }
+                                               p++;
+                                       }
+                                       p--;
+                               } else {
+                                       s = p;
+                                       if (*p == '#') {
+                                               p++;
+                                       }
+                                       while (*p && (isalnum((int) *p) || *p == '_')) {
+                                               p++;
+                                       }
                                }
 
-                               /* Remove \\-\n. */
-                               bl = strlen(buf);
-                               if (bl >= 2 && buf[bl-2] == '\\' && buf[bl-1] == '\n') {
-                                       buf[bl-2] = '\0';
-                                       bl -= 2;
-                                       if (bl == 0) {
-                                               continue;
-                                       }
+                               /* copy variable to buffer */
+                               len = (p - s > 255) ? 255 : (p - s);
+                               strncpy(buf, s, len);
+                               buf[len] = '\0';
+
+                               if (*p == '}') {
+                                       p++;
                                }
+                               s = p;
+
+                               /* search for variable in environment */
 
-                               /* Check for continuation of \\-\n. */
-                               if (l > 0 && buf[0] == '\n' && global_text[l-1] == '\\') {
-                                       global_text[l-1] = '\0';
+                               var = getenv(buf);
+                               if (var) {
+                                       obj = create_plain_text(var);
+                                       if (obj) {
+                                               append_object(retval, obj);
+                                       }
                                        continue;
                                }
 
-                               global_text = (char *) realloc(global_text, l + bl + 1);
-                               strcat(global_text, buf);
+                               /* if variable wasn't found in environment, use some special */
 
-                               if (strlen(global_text) > max_user_text) {
-                                       break;
+                               arg = 0;
+
+                               /* split arg */
+                               if (strchr(buf, ' ')) {
+                                       arg = strchr(buf, ' ');
+                                       *arg = '\0';
+                                       arg++;
+                                       while (isspace((int) *arg)) {
+                                               arg++;
+                                       }
+                                       if (!*arg) {
+                                               arg = 0;
+                                       }
                                }
-                       }
-                       fclose(fp);
-                       if (strlen(global_text) < 1) {
-                               CRIT_ERR(NULL, NULL, "no text supplied in configuration; exiting");
-                       }
-                       global_text_lines = line + 1;
-                       return TRUE;
-               }
-#ifdef TCP_PORT_MONITOR
-               CONF("max_port_monitor_connections") {
-                       int max;
-                       if (!value || (sscanf(value, "%d", &max) != 1)) {
-                               /* an error. use default, warn and continue. */
-                               tcp_portmon_set_max_connections(0);
-                               CONF_ERR;
-                       } else if (tcp_portmon_set_max_connections(max)) {
-                               /* max is < 0, default has been set*/
-                               CONF_ERR;
-                       }
-               }
-#endif
-               CONF("if_up_strictness") {
-                       if (!value) {
-                               NORM_ERR("incorrect if_up_strictness value, defaulting to 'up'");
-                               ifup_strictness = IFUP_UP;
-                       } else if (strcasecmp(value, "up") == EQUAL) {
-                               ifup_strictness = IFUP_UP;
-                       } else if (strcasecmp(value, "link") == EQUAL) {
-                               ifup_strictness = IFUP_LINK;
-                       } else if (strcasecmp(value, "address") == EQUAL) {
-                               ifup_strictness = IFUP_ADDR;
-                       } else {
-                               NORM_ERR("incorrect if_up_strictness value, defaulting to 'up'");
-                               ifup_strictness = IFUP_UP;
-                       }
-               }
 
-               CONF("temperature_unit") {
-                       if (!value) {
-                               NORM_ERR("config option 'temperature_unit' needs an argument, either 'celsius' or 'fahrenheit'");
-                       } else if (set_temp_output_unit(value)) {
-                               NORM_ERR("temperature_unit: incorrect argument");
-                       }
-               }
+                               /* lowercase variable name */
+                               tmp_p = buf;
+                               while (*tmp_p) {
+                                       *tmp_p = tolower(*tmp_p);
+                                       tmp_p++;
+                               }
 
-#ifdef HAVE_LUA
-               CONF("lua_load") {
-                       if (value) {
-                               char *ptr = strtok(value, " ");
-                               while (ptr) {
-                                       llua_load(ptr);
-                                       ptr = strtok(NULL, " ");
+                               obj = construct_text_object(buf, arg,
+                                               line, &ifblock_opaque, orig_p);
+                               if (obj != NULL) {
+                                       append_object(retval, obj);
                                }
+                               continue;
                        } else {
-                               CONF_ERR;
-                       }
-               }
-#ifdef X11
-               CONF("lua_draw_hook_pre") {
-                       if (value) {
-                               llua_set_draw_pre_hook(value);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("lua_draw_hook_post") {
-                       if (value) {
-                               llua_set_draw_post_hook(value);
-                       } else {
-                               CONF_ERR;
-                       }
-               }
-               CONF("lua_startup_hook") {
-                       if (value) {
-                               llua_set_startup_hook(value);
-                       } else {
-                               CONF_ERR;
+                               obj = create_plain_text("$");
+                               s = p + 1;
+                               if (obj != NULL) {
+                                       append_object(retval, obj);
+                               }
                        }
-               }
-               CONF("lua_shutdown_hook") {
-                       if (value) {
-                               llua_set_shutdown_hook(value);
-                       } else {
-                               CONF_ERR;
+               } else if (*p == '\\' && *(p+1) == '#') {
+                       strfold(p, 1);
+               } else if (*p == '#') {
+                       char c;
+                       if (remove_comment(p, &c) && p > orig_p && c == '\n') {
+                               /* if remove_comment removed a newline, we need to 'back up' with p */
+                               p--;
                        }
                }
-#endif /* X11 */
-#endif /* HAVE_LUA */
-
-               CONF("color0"){}
-               CONF("color1"){}
-               CONF("color2"){}
-               CONF("color3"){}
-               CONF("color4"){}
-               CONF("color5"){}
-               CONF("color6"){}
-               CONF("color7"){}
-               CONF("color8"){}
-               CONF("color9"){}
-               CONF("default_color"){}
-               CONF3("default_shade_color", "default_shadecolor"){}
-               CONF3("default_outline_color", "default_outlinecolor") {}
-               CONF("own_window_colour") {}
-
-               else {
-                       NORM_ERR("%s: %d: no such configuration: '%s'", f, line, name);
-               }
+               p++;
        }
-
-       fclose(fp);
-
-       if (ctx->info.music_player_interval == 0) {
-               // default to update_interval
-               ctx->info.music_player_interval = ctx->update_interval;
+       obj = create_plain_text(s);
+       if (obj != NULL) {
+               append_object(retval, obj);
        }
-       if (!global_text) { // didn't supply any text
-               CRIT_ERR(NULL, NULL, "missing text block in configuration; exiting");
+
+       if (!ifblock_stack_empty(&ifblock_opaque)) {
+               NORM_ERR("one or more $endif's are missing");
        }
-       return TRUE;
+
+       free(orig_p);
+       return 0;
 }
 
-#ifdef X11
-void load_config_file_x11(conky_context *ctx, const char *f)
+/*
+ * Frees the list of text objects root points to.  When internal = 1, it won't
+ * free global objects.
+ */
+void free_text_objects(struct text_object *root, int internal)
 {
-       int line = 0;
-       FILE *fp;
+       struct text_object *obj;
 
-       fp = open_config_file(f);
-       if (!fp) {
+       if (!root->prev) {
                return;
        }
-       DBGP("reading contents from config file '%s'", f);
-
-       while (!feof(fp)) {
-               char buff[CONF_BUFF_SIZE], *name, *value;
-               int ret = do_config_step(&line, fp, buff, &name, &value);
-               if (ret == CONF_BREAK) {
-                       break;
-               } else if (ret == CONF_CONTINUE) {
-                       continue;
-               }
 
-               CONF2("color0") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       color0 = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+#define data obj->data
+       for (obj = root->prev; obj; obj = root->prev) {
+               root->prev = obj->prev;
+               switch (obj->type) {
+#ifndef __OpenBSD__
+                       case OBJ_acpitemp:
+                               close(data.i);
+                               break;
+#endif /* !__OpenBSD__ */
+#ifdef __linux__
+                       case OBJ_i2c:
+                       case OBJ_platform:
+                       case OBJ_hwmon:
+                               close(data.sysfs.fd);
+                               break;
+#endif /* __linux__ */
+                       case OBJ_read_tcp:
+                               free(data.read_tcp.host);
+                               break;
+                       case OBJ_time:
+                       case OBJ_utime:
+                               free(data.s);
+                               break;
+                       case OBJ_tztime:
+                               free(data.tztime.tz);
+                               free(data.tztime.fmt);
+                               break;
+                       case OBJ_mboxscan:
+                               free(data.mboxscan.args);
+                               free(data.mboxscan.output);
+                               break;
+                       case OBJ_mails:
+                       case OBJ_new_mails:
+                       case OBJ_seen_mails:
+                       case OBJ_unseen_mails:
+                       case OBJ_flagged_mails:
+                       case OBJ_unflagged_mails:
+                       case OBJ_forwarded_mails:
+                       case OBJ_unforwarded_mails:
+                       case OBJ_replied_mails:
+                       case OBJ_unreplied_mails:
+                       case OBJ_draft_mails:
+                       case OBJ_trashed_mails:
+                               free(data.local_mail.mbox);
+                               break;
+                       case OBJ_imap_unseen:
+                               if (!obj->char_b) {
+                                       free(data.mail);
                                }
-                       }
-               }
-               CONF("color1") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       color1 = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               break;
+                       case OBJ_imap_messages:
+                               if (!obj->char_b) {
+                                       free(data.mail);
                                }
-                       }
-               }
-               CONF("color2") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       color2 = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               break;
+                       case OBJ_pop3_unseen:
+                               if (!obj->char_b) {
+                                       free(data.mail);
                                }
-                       }
-               }
-               CONF("color3") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       color3 = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               break;
+                       case OBJ_pop3_used:
+                               if (!obj->char_b) {
+                                       free(data.mail);
                                }
-                       }
-               }
-               CONF("color4") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       color4 = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               break;
+                       case OBJ_if_empty:
+                       case OBJ_if_match:
+                               free_text_objects(obj->sub, 1);
+                               free(obj->sub);
+                               /* fall through */
+                       case OBJ_if_existing:
+                       case OBJ_if_mounted:
+                       case OBJ_if_running:
+                               free(data.ifblock.s);
+                               free(data.ifblock.str);
+                               break;
+                       case OBJ_head:
+                       case OBJ_tail:
+                               free(data.headtail.logfile);
+                               if(data.headtail.buffer) {
+                                       free(data.headtail.buffer);
                                }
-                       }
-               }
-               CONF("color5") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       color5 = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               break;
+                       case OBJ_text:
+                       case OBJ_font:
+                       case OBJ_image:
+                       case OBJ_eval:
+                       case OBJ_exec:
+                       case OBJ_execbar:
+#ifdef X11
+                       case OBJ_execgauge:
+                       case OBJ_execgraph:
+#endif
+                       case OBJ_execp:
+                               free(data.s);
+                               break;
+#ifdef HAVE_ICONV
+                       case OBJ_iconv_start:
+                               free_iconv();
+                               break;
+#endif
+#ifdef __linux__
+                       case OBJ_disk_protect:
+                               free(data.s);
+                               break;
+                       case OBJ_if_gw:
+                               free(data.ifblock.s);
+                               free(data.ifblock.str);
+                       case OBJ_gw_iface:
+                       case OBJ_gw_ip:
+                               if (info.gw_info.iface) {
+                                       free(info.gw_info.iface);
+                                       info.gw_info.iface = 0;
                                }
-                       }
-               }
-               CONF("color6") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       color6 = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               if (info.gw_info.ip) {
+                                       free(info.gw_info.ip);
+                                       info.gw_info.ip = 0;
                                }
-                       }
-               }
-               CONF("color7") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       color7 = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               break;
+                       case OBJ_ioscheduler:
+                               if(data.s)
+                                       free(data.s);
+                               break;
+#endif
+#if (defined(__FreeBSD__) || defined(__linux__))
+                       case OBJ_if_up:
+                               free(data.ifblock.s);
+                               free(data.ifblock.str);
+                               break;
+#endif
+#ifdef XMMS2
+                       case OBJ_xmms2_artist:
+                               if (info.xmms2.artist) {
+                                       free(info.xmms2.artist);
+                                       info.xmms2.artist = 0;
                                }
-                       }
-               }
-               CONF("color8") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       color8 = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               break;
+                       case OBJ_xmms2_album:
+                               if (info.xmms2.album) {
+                                       free(info.xmms2.album);
+                                       info.xmms2.album = 0;
                                }
-                       }
-               }
-               CONF("color9") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       color9 = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               break;
+                       case OBJ_xmms2_title:
+                               if (info.xmms2.title) {
+                                       free(info.xmms2.title);
+                                       info.xmms2.title = 0;
                                }
-                       }
-               }
-               CONF("default_color") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       default_fg_color = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               break;
+                       case OBJ_xmms2_genre:
+                               if (info.xmms2.genre) {
+                                       free(info.xmms2.genre);
+                                       info.xmms2.genre = 0;
                                }
-                       }
-               }
-               CONF3("default_shade_color", "default_shadecolor") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       default_bg_color = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               break;
+                       case OBJ_xmms2_comment:
+                               if (info.xmms2.comment) {
+                                       free(info.xmms2.comment);
+                                       info.xmms2.comment = 0;
                                }
-                       }
-               }
-               CONF3("default_outline_color", "default_outlinecolor") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       default_out_color = get_x11_color(value);
-                               } else {
-                                       CONF_ERR;
+                               break;
+                       case OBJ_xmms2_url:
+                               if (info.xmms2.url) {
+                                       free(info.xmms2.url);
+                                       info.xmms2.url = 0;
                                }
-                       }
-               }
-#ifdef OWN_WINDOW
-               CONF("own_window_colour") {
-                       X11_initialisation();
-                       if (x_initialised == YES) {
-                               if (value) {
-                                       background_colour = get_x11_color(value);
-                               } else {
-                                       NORM_ERR("Invalid colour for own_window_colour (try omitting the "
-                                               "'#' for hex colours");
+                               break;
+                       case OBJ_xmms2_date:
+                               if (info.xmms2.date) {
+                                       free(info.xmms2.date);
+                                       info.xmms2.date = 0;
                                }
-                       }
-               }
+                               break;
+                       case OBJ_xmms2_status:
+                               if (info.xmms2.status) {
+                                       free(info.xmms2.status);
+                                       info.xmms2.status = 0;
+                               }
+                               break;
+                       case OBJ_xmms2_playlist:
+                               if (info.xmms2.playlist) {
+                                       free(info.xmms2.playlist);
+                                       info.xmms2.playlist = 0;
+                               }
+                               break;
+                       case OBJ_xmms2_smart:
+                               if (info.xmms2.artist) {
+                                       free(info.xmms2.artist);
+                                       info.xmms2.artist = 0;
+                               }
+                               if (info.xmms2.title) {
+                                       free(info.xmms2.title);
+                                       info.xmms2.title = 0;
+                               }
+                               if (info.xmms2.url) {
+                                       free(info.xmms2.url);
+                                       info.xmms2.url = 0;
+                               }
+                               break;
 #endif
-               CONF("text") {
-                       /* initialize X11 if nothing X11-related is mentioned before TEXT (and if X11 is the default outputmethod) */
-                       if (ctx->output_methods & TO_X) {
-                               X11_initialisation();
-                       }
+#ifdef BMPX
+                       case OBJ_bmpx_title:
+                       case OBJ_bmpx_artist:
+                       case OBJ_bmpx_album:
+                       case OBJ_bmpx_track:
+                       case OBJ_bmpx_uri:
+                       case OBJ_bmpx_bitrate:
+                               break;
+#endif
+#ifdef EVE
+                       case OBJ_eve:
+                               break;
+#endif
+#ifdef HAVE_CURL
+                       case OBJ_curl:
+                               free(data.curl.uri);
+                               break;
+#endif
+#ifdef RSS
+                       case OBJ_rss:
+                               free(data.rss.uri);
+                               free(data.rss.action);
+                               break;
+#endif
+#ifdef WEATHER
+                       case OBJ_weather:
+                               free(data.weather.uri);
+                               free(data.weather.data_type);
+                               break;
+#endif
+#ifdef XOAP
+                       case OBJ_weather_forecast:
+                               free(data.weather_forecast.uri);
+                               free(data.weather_forecast.data_type);
+                               break;
+#endif
+#ifdef HAVE_LUA
+                       case OBJ_lua:
+                       case OBJ_lua_parse:
+                       case OBJ_lua_bar:
+#ifdef X11
+                       case OBJ_lua_graph:
+                       case OBJ_lua_gauge:
+#endif /* X11 */
+                               free(data.s);
+                               break;
+#endif /* HAVE_LUA */
+                       case OBJ_pre_exec:
+                               break;
+#ifndef __OpenBSD__
+                       case OBJ_battery:
+                               free(data.s);
+                               break;
+                       case OBJ_battery_short:
+                               free(data.s);
+                               break;
+                       case OBJ_battery_time:
+                               free(data.s);
+                               break;
+#endif /* !__OpenBSD__ */
+                       case OBJ_execpi:
+                       case OBJ_execi:
+                       case OBJ_execibar:
+#ifdef X11
+                       case OBJ_execigraph:
+                       case OBJ_execigauge:
+#endif /* X11 */
+                               free(data.execi.cmd);
+                               free(data.execi.buffer);
+                               break;
+                       case OBJ_texeci:
+                               if (data.texeci.p_timed_thread) timed_thread_destroy(data.texeci.p_timed_thread, &data.texeci.p_timed_thread);
+                               free(data.texeci.cmd);
+                               free(data.texeci.buffer);
+                               break;
+                       case OBJ_nameserver:
+                               free_dns_data();
+                               break;
+                       case OBJ_top:
+                       case OBJ_top_mem:
+                       case OBJ_top_time:
+#ifdef IOSTATS
+                       case OBJ_top_io:
+#endif
+                               if (info.first_process && !internal) {
+                                       free_all_processes();
+                                       info.first_process = NULL;
+                               }
+                               if (data.top.s) free(data.top.s);
+                               break;
+#ifdef HDDTEMP
+                       case OBJ_hddtemp:
+                               free(data.hddtemp.dev);
+                               free(data.hddtemp.addr);
+                               if (data.hddtemp.temp)
+                                       free(data.hddtemp.temp);
+                               break;
+#endif /* HDDTEMP */
+                       case OBJ_entropy_avail:
+                       case OBJ_entropy_perc:
+                       case OBJ_entropy_poolsize:
+                       case OBJ_entropy_bar:
+                               break;
+                       case OBJ_user_names:
+                               if (info.users.names) {
+                                       free(info.users.names);
+                                       info.users.names = 0;
+                               }
+                               break;
+                       case OBJ_user_terms:
+                               if (info.users.terms) {
+                                       free(info.users.terms);
+                                       info.users.terms = 0;
+                               }
+                               break;
+                       case OBJ_user_times:
+                               if (info.users.times) {
+                                       free(info.users.times);
+                                       info.users.times = 0;
+                               }
+                               break;
+#ifdef IBM
+                       case OBJ_smapi:
+                       case OBJ_smapi_bat_perc:
+                       case OBJ_smapi_bat_temp:
+                       case OBJ_smapi_bat_power:
+                               free(data.s);
+                               break;
+                       case OBJ_if_smapi_bat_installed:
+                               free(data.ifblock.s);
+                               free(data.ifblock.str);
+                               break;
+#endif /* IBM */
+#ifdef NVIDIA
+                       case OBJ_nvidia:
+                               break;
+#endif /* NVIDIA */
+#ifdef MPD
+                       case OBJ_mpd_title:
+                       case OBJ_mpd_artist:
+                       case OBJ_mpd_album:
+                       case OBJ_mpd_random:
+                       case OBJ_mpd_repeat:
+                       case OBJ_mpd_vol:
+                       case OBJ_mpd_bitrate:
+                       case OBJ_mpd_status:
+                       case OBJ_mpd_bar:
+                       case OBJ_mpd_elapsed:
+                       case OBJ_mpd_length:
+                       case OBJ_mpd_track:
+                       case OBJ_mpd_name:
+                       case OBJ_mpd_file:
+                       case OBJ_mpd_percent:
+                       case OBJ_mpd_smart:
+                       case OBJ_if_mpd_playing:
+                               free_mpd();
+                               break;
+#endif /* MPD */
+#ifdef MOC
+                       case OBJ_moc_state:
+                       case OBJ_moc_file:
+                       case OBJ_moc_title:
+                       case OBJ_moc_artist:
+                       case OBJ_moc_song:
+                       case OBJ_moc_album:
+                       case OBJ_moc_totaltime:
+                       case OBJ_moc_timeleft:
+                       case OBJ_moc_curtime:
+                       case OBJ_moc_bitrate:
+                       case OBJ_moc_rate:
+                               free_moc();
+                               break;
+#endif /* MOC */
+                       case OBJ_include:
+                       case OBJ_blink:
+                       case OBJ_to_bytes:
+                               if(obj->sub) {
+                                       free_text_objects(obj->sub, 1);
+                                       free(obj->sub);
+                               }
+                               break;
+                       case OBJ_scroll:
+                               free(data.scroll.text);
+                               free_text_objects(obj->sub, 1);
+                               free(obj->sub);
+                               break;
+                       case OBJ_combine:
+                               free(data.combine.left);
+                               free(data.combine.seperation);
+                               free(data.combine.right);
+                               free_text_objects(obj->sub, 1);
+                               free(obj->sub);
+                               break;
+#ifdef APCUPSD
+                       case OBJ_apcupsd:
+                       case OBJ_apcupsd_name:
+                       case OBJ_apcupsd_model:
+                       case OBJ_apcupsd_upsmode:
+                       case OBJ_apcupsd_cable:
+                       case OBJ_apcupsd_status:
+                       case OBJ_apcupsd_linev:
+                       case OBJ_apcupsd_load:
+                       case OBJ_apcupsd_loadbar:
+#ifdef X11
+                       case OBJ_apcupsd_loadgraph:
+                       case OBJ_apcupsd_loadgauge:
+#endif /* X11 */
+                       case OBJ_apcupsd_charge:
+                       case OBJ_apcupsd_timeleft:
+                       case OBJ_apcupsd_temp:
+                       case OBJ_apcupsd_lastxfer:
+                               break;
+#endif /* APCUPSD */
+#ifdef X11
+                       case OBJ_desktop:
+                       case OBJ_desktop_number:
+                       case OBJ_desktop_name:
+                               if(info.x11.desktop.name) {
+                                 free(info.x11.desktop.name);
+                                 info.x11.desktop.name = NULL;
+                               }
+                               if(info.x11.desktop.all_names) {
+                                 free(info.x11.desktop.all_names);
+                                 info.x11.desktop.all_names = NULL;
+                               }
+                               break;
+#endif /* X11 */
                }
-#undef CONF
-#undef CONF2
-#undef CONF3
-#undef CONF_ERR
-#undef CONF_ERR2
-#undef CONF_BREAK
-#undef CONF_CONTINUE
-#undef CONF_BUFF_SIZE
+               free(obj);
        }
-
-       fclose(fp);
-
+#undef data
 }
-#endif /* X11 */
 
index 436122b..a5038ee 100644 (file)
 #ifndef _CONKY_CORE_H_
 #define _CONKY_CORE_H_
 
-#include "config.h"    /* defines */
+#include "conky.h"
 
-/* alignments */
-enum alignment {
-       TOP_LEFT = 1,
-       TOP_RIGHT,
-       TOP_MIDDLE,
-       BOTTOM_LEFT,
-       BOTTOM_RIGHT,
-       BOTTOM_MIDDLE,
-       MIDDLE_LEFT,
-       MIDDLE_RIGHT,
-       NONE
-};
+struct text_object *construct_text_object(const char *s, const char *arg, long
+               line, void **ifblock_opaque, void *free_at_crash);
 
-#ifdef X11
-#define TO_X 1
-#endif /* X11 */
-#define TO_STDOUT 2
-#define TO_STDERR 4
-#define OVERWRITE_FILE 8
-#define APPEND_FILE 16
-#ifdef NCURSES
-#define TO_NCURSES 32
-#endif /* NCURSES */
+size_t remove_comments(char *string);
 
-void read_exec(const char *data, char *buf, const int size);
-void set_default_configurations(conky_context *ctx);
-void set_update_interval(double interval);
+int extract_variable_text_internal(struct text_object *retval, const char *const_p);
 
-/* update_text() generates new text and clears old text area */
-void update_text(conky_context *ctx);
-void update_text_area(conky_context *ctx);
-void draw_stuff(conky_context *ctx);
-char load_config_file(conky_context *ctx, const char *f);
-void extract_variable_text(conky_context *ctx, const char *p);
+void free_text_objects(struct text_object *root, int internal);
 
 #ifdef X11
-void clear_text(conky_context *ctx, int exposures);
-enum alignment string_to_alignment(const char *s);
-void load_config_file_x11(conky_context *ctx, const char *);
-void X11_create_window(conky_context *ctx);
+void scan_mixer_bar(const char *arg, int *a, int *w, int *h);
 #endif /* X11 */
 
-void convert_escapes(char *buf);
+#ifdef HAVE_ICONV
+void set_iconv_converting(char i);
+void set_iconv_selected(long i);
+void iconv_convert(size_t a, char *buff_in, char *p, size_t p_max_size);
+#endif /* HAVE_ICONV */
 
 #endif /* _CONKY_CORE_H_ */
index 7de377c..22d9278 100644 (file)
 
 #include "x11.h"
 
+/* for fonts */
+struct font_list {
+
+       char name[DEFAULT_TEXT_BUFFER_SIZE];
+       int num;
+       XFontStruct *font;
+
+#ifdef XFT
+       XftFont *xftfont;
+       int font_alpha;
+#endif
+};
+
 #ifdef XFT
 
-#define font_height() (use_xft ? (fonts[ctx->selected_font].xftfont->ascent + \
-       fonts[ctx->selected_font].xftfont->descent) \
-       : (fonts[ctx->selected_font].font->max_bounds.ascent + \
-       fonts[ctx->selected_font].font->max_bounds.descent))
-#define font_ascent() (use_xft ? fonts[ctx->selected_font].xftfont->ascent \
-       : fonts[ctx->selected_font].font->max_bounds.ascent)
-#define font_descent() (use_xft ? fonts[ctx->selected_font].xftfont->descent \
-       : fonts[ctx->selected_font].font->max_bounds.descent)
+#define font_height() (use_xft ? (fonts[selected_font].xftfont->ascent + \
+       fonts[selected_font].xftfont->descent) \
+       : (fonts[selected_font].font->max_bounds.ascent + \
+       fonts[selected_font].font->max_bounds.descent))
+#define font_ascent() (use_xft ? fonts[selected_font].xftfont->ascent \
+       : fonts[selected_font].font->max_bounds.ascent)
+#define font_descent() (use_xft ? fonts[selected_font].xftfont->descent \
+       : fonts[selected_font].font->max_bounds.descent)
 
 #else
 
-#define font_height() (fonts[ctx->selected_font].font->max_bounds.ascent + \
-       fonts[ctx->selected_font].font->max_bounds.descent)
-#define font_ascent() fonts[ctx->selected_font].font->max_bounds.ascent
-#define font_descent() fonts[ctx->selected_font].font->max_bounds.descent
+#define font_height() (fonts[selected_font].font->max_bounds.ascent + \
+       fonts[selected_font].font->max_bounds.descent)
+#define font_ascent() fonts[selected_font].font->max_bounds.ascent
+#define font_descent() fonts[selected_font].font->max_bounds.descent
 
 #endif
 
 #define MAX_FONTS 256
 
+/* direct access to registered fonts (FIXME: bad encapsulation) */
+extern struct font_list *fonts;
+extern int selected_font;
+extern int font_count;
 
 void setup_fonts(void);
 void set_font(void);
index 13cb737..01b40a1 100644 (file)
@@ -964,8 +964,12 @@ void get_battery_short_status(char *buffer, unsigned int n, const char *bat)
        }
 }
 
-/* empty stubs so conky links */
-void update_entropy(void) {}
-void free_all_processes(void) {}
-void clear_cpu_stats(void) {}
+void update_entropy(void)
+{
+       /* Not applicable for FreeBSD as it uses the yarrow prng. */
+}
 
+/* empty stub so conky links */
+void free_all_processes(void)
+{
+}
index 8ef7f06..102f4da 100644 (file)
@@ -610,16 +610,6 @@ void get_cpu_count(void)
 #define TMPL_LONGSTAT "%*s %llu %llu %llu %llu %llu %llu %llu %llu"
 #define TMPL_SHORTSTAT "%*s %llu %llu %llu %llu"
 
-static void *global_cpu = 0;
-
-void clear_cpu_stats(void)
-{
-       if (global_cpu) {
-               free(global_cpu);
-               global_cpu = 0;
-       }
-}
-
 inline static void update_stat(void)
 {
        FILE *stat_fp;
@@ -631,6 +621,7 @@ inline static void update_stat(void)
        double curtmp;
        const char *stat_template = NULL;
        unsigned int malloc_cpu_size = 0;
+       extern void* global_cpu;
 
        /* add check for !info.cpu_usage since that mem is freed on a SIGUSR1 */
        if (!cpu_setup || !info.cpu_usage) {
index ea138b2..f27bdb2 100644 (file)
@@ -494,18 +494,18 @@ void llua_update_window_table(int text_start_x, int text_start_y, int text_width
 }
 #endif /* X11 */
 
-void llua_setup_info(conky_context *ctx, double u_interval)
+void llua_setup_info(struct information *i, double u_interval)
 {
        if (!lua_L) return;
        lua_newtable(lua_L);
 
        llua_set_number("update_interval", u_interval);
-       llua_set_number("uptime", ctx->info.uptime);
+       llua_set_number("uptime", i->uptime);
 
        lua_setglobal(lua_L, "conky_info");
 }
 
-void llua_update_info(conky_context *ctx, double u_interval)
+void llua_update_info(struct information *i, double u_interval)
 {
        if (!lua_L) return;
 
@@ -517,7 +517,7 @@ void llua_update_info(conky_context *ctx, double u_interval)
        }
 
        llua_set_number("update_interval", u_interval);
-       llua_set_number("uptime", ctx->info.uptime);
+       llua_set_number("uptime", i->uptime);
 
        lua_setglobal(lua_L, "conky_info");
 }
index 59ea82e..1c0c52b 100644 (file)
 #ifndef LUA_H_
 #define LUA_H_
 
-#include "structs.h"
-
 #include <lua.h>
 #include <lauxlib.h>
 #include <lualib.h>
 
+#include "config.h"
+
 #ifdef X11
 #include "x11.h"
 #endif /* X11 */
@@ -68,7 +68,7 @@ void llua_setup_window_table(int text_start_x, int text_start_y, int text_width,
 void llua_update_window_table(int text_start_x, int text_start_y, int text_width, int text_height);
 #endif /* X11 */
 
-void llua_setup_info(conky_context *ctx, double u_interval);
-void llua_update_info(conky_context *ctx, double u_interval);
+void llua_setup_info(struct information *i, double u_interval);
+void llua_update_info(struct information *i, double u_interval);
 
 #endif /* LUA_H_*/
diff --git a/src/obj_create.c b/src/obj_create.c
deleted file mode 100644 (file)
index cebea3d..0000000
+++ /dev/null
@@ -1,2555 +0,0 @@
-/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
- *
- * Conky, a system monitor, based on torsmo
- *
- * Any original torsmo code is licensed under the BSD license
- *
- * All code written since the fork of torsmo is licensed under the GPL
- *
- * Please see COPYING for details
- *
- * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
- * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
- *     (see AUTHORS)
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- *
- * vim: ts=4 sw=4 noet ai cindent syntax=c
- *
- */
-
-/* local headers */
-#include "obj_create.h"
-#include "text_object.h"
-#include "algebra.h"
-#include "build.h"
-#include "colours.h"
-#include "diskio.h"
-#ifdef X11
-#include "fonts.h"
-#endif
-#include "fs.h"
-#include "logging.h"
-#include "mixer.h"
-#include "mail.h"
-#include "mboxscan.h"
-#include "specials.h"
-#include "temphelper.h"
-#include "tailhead.h"
-#include "top.h"
-
-/* check for OS and include appropriate headers */
-#if defined(__linux__)
-#include "linux.h"
-#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
-#include "freebsd.h"
-#elif defined(__OpenBSD__)
-#include "openbsd.h"
-#endif
-
-#include <string.h>
-#include <ctype.h>
-
-#ifdef HAVE_ICONV
-#include <iconv.h>
-
-#define ICONV_CODEPAGE_LENGTH 20
-
-int register_iconv(iconv_t *new_iconv);
-
-long iconv_selected;
-long iconv_count = 0;
-char iconv_converting;
-static iconv_t **iconv_cd = 0;
-
-char is_iconv_converting(void)
-{
-       return iconv_converting;
-}
-
-void set_iconv_converting(char i)
-{
-       iconv_converting = i;
-}
-
-long get_iconv_selected(void)
-{
-       return iconv_selected;
-}
-
-void set_iconv_selected(long i)
-{
-       iconv_selected = i;
-}
-
-int register_iconv(iconv_t *new_iconv)
-{
-       iconv_cd = realloc(iconv_cd, sizeof(iconv_t *) * (iconv_count + 1));
-       if (!iconv_cd) {
-               CRIT_ERR(NULL, NULL, "Out of memory");
-       }
-       iconv_cd[iconv_count] = malloc(sizeof(iconv_t));
-       if (!iconv_cd[iconv_count]) {
-               CRIT_ERR(NULL, NULL, "Out of memory");
-       }
-       memcpy(iconv_cd[iconv_count], new_iconv, sizeof(iconv_t));
-       iconv_count++;
-       return iconv_count;
-}
-
-void free_iconv(void)
-{
-       if (iconv_cd) {
-               long i;
-
-               for (i = 0; i < iconv_count; i++) {
-                       if (iconv_cd[i]) {
-                               iconv_close(*iconv_cd[i]);
-                               free(iconv_cd[i]);
-                       }
-               }
-               free(iconv_cd);
-       }
-       iconv_cd = 0;
-}
-
-void iconv_convert(size_t a, char *buff_in, char *p, size_t p_max_size)
-{
-       if (a > 0 && is_iconv_converting() && get_iconv_selected() > 0
-                       && (iconv_cd[iconv_selected - 1] != (iconv_t) (-1))) {
-               int bytes;
-               size_t dummy1, dummy2;
-#ifdef __FreeBSD__
-               const char *ptr = buff_in;
-#else
-               char *ptr = buff_in;
-#endif
-               char *outptr = p;
-
-               dummy1 = dummy2 = a;
-
-               strncpy(buff_in, p, p_max_size);
-
-               iconv(*iconv_cd[iconv_selected - 1], NULL, NULL, NULL, NULL);
-               while (dummy1 > 0) {
-                       bytes = iconv(*iconv_cd[iconv_selected - 1], &ptr, &dummy1,
-                                       &outptr, &dummy2);
-                       if (bytes == -1) {
-                               NORM_ERR("Iconv codeset conversion failed");
-                               break;
-                       }
-               }
-
-               /* It is nessecary when we are converting from multibyte to
-                * singlebyte codepage */
-               a = outptr - p;
-       }
-}
-#endif /* HAVE_ICONV */
-
-/* strip a leading /dev/ if any, following symlinks first
- *
- * BEWARE: this function returns a pointer to static content
- *         which gets overwritten in consecutive calls. I.e.:
- *         this function is NOT reentrant.
- */
-static const char *dev_name(const char *path)
-{
-       static char buf[255];   /* should be enough for pathnames */
-       ssize_t buflen;
-
-       if (!path)
-               return NULL;
-
-#define DEV_NAME(x) \
-  x != NULL && strlen(x) > 5 && strncmp(x, "/dev/", 5) == 0 ? x + 5 : x
-       if ((buflen = readlink(path, buf, 254)) == -1)
-               return DEV_NAME(path);
-       buf[buflen] = '\0';
-       return DEV_NAME(buf);
-#undef DEV_NAME
-}
-
-static struct text_object *new_text_object_internal(void)
-{
-       struct text_object *obj = malloc(sizeof(struct text_object));
-       memset(obj, 0, sizeof(struct text_object));
-       return obj;
-}
-
-static struct text_object *create_plain_text(const char *s)
-{
-       struct text_object *obj;
-
-       if (s == NULL || *s == '\0') {
-               return NULL;
-       }
-
-       obj = new_text_object_internal();
-
-       obj->type = OBJ_text;
-       obj->data.s = strndup(s, text_buffer_size);
-       return obj;
-}
-
-/* construct_text_object() creates a new text_object */
-struct text_object *construct_text_object(const char *s, const char *arg, long
-               line, void **ifblock_opaque, void *free_at_crash)
-{
-       // struct text_object *obj = new_text_object();
-       struct text_object *obj = new_text_object_internal();
-
-       obj->line = line;
-
-#define OBJ(a, n) if (strcmp(s, #a) == 0) { \
-       obj->type = OBJ_##a; need_mask |= (1ULL << n); {
-#define OBJ_IF(a, n) if (strcmp(s, #a) == 0) { \
-       obj->type = OBJ_##a; need_mask |= (1ULL << n); \
-       obj_be_ifblock_if(ifblock_opaque, obj); {
-#define END } } else
-
-#define SIZE_DEFAULTS(arg) { \
-       obj->a = default_##arg##_width; \
-       obj->b = default_##arg##_height; \
-}
-
-#ifdef X11
-       if (s[0] == '#') {
-               obj->type = OBJ_color;
-               obj->data.l = get_x11_color(s);
-       } else
-#endif /* X11 */
-#ifdef __OpenBSD__
-       OBJ(freq, INFO_FREQ)
-#else
-       OBJ(acpitemp, 0)
-               obj->data.i = open_acpi_temperature(arg);
-       END OBJ(acpiacadapter, 0)
-       END OBJ(freq, INFO_FREQ)
-#endif /* !__OpenBSD__ */
-               get_cpu_count();
-               if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
-                               || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
-                       obj->data.cpu_index = 1;
-                       /* NORM_ERR("freq: Invalid CPU number or you don't have that many CPUs! "
-                               "Displaying the clock for CPU 1."); */
-               } else {
-                       obj->data.cpu_index = atoi(&arg[0]);
-               }
-               obj->a = 1;
-       END OBJ(freq_g, INFO_FREQ)
-               get_cpu_count();
-               if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
-                               || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
-                       obj->data.cpu_index = 1;
-                       /* NORM_ERR("freq_g: Invalid CPU number or you don't have that many "
-                               "CPUs! Displaying the clock for CPU 1."); */
-               } else {
-                       obj->data.cpu_index = atoi(&arg[0]);
-               }
-               obj->a = 1;
-       END OBJ(read_tcp, 0)
-               if (arg) {
-                       obj->data.read_tcp.host = malloc(text_buffer_size);
-                       sscanf(arg, "%s", obj->data.read_tcp.host);
-                       sscanf(arg+strlen(obj->data.read_tcp.host), "%u", &(obj->data.read_tcp.port));
-                       if(obj->data.read_tcp.port == 0) {
-                               obj->data.read_tcp.port = atoi(obj->data.read_tcp.host);
-                               strcpy(obj->data.read_tcp.host,"localhost");
-                       }
-                       obj->data.read_tcp.port = htons(obj->data.read_tcp.port);
-                       if(obj->data.read_tcp.port < 1 || obj->data.read_tcp.port > 65535) {
-                               CRIT_ERR(obj, free_at_crash, "read_tcp: Needs \"(host) port\" as argument(s)");
-                       }
-               }else{
-                       CRIT_ERR(obj, free_at_crash, "read_tcp: Needs \"(host) port\" as argument(s)");
-               }
-#if defined(__linux__)
-       END OBJ(voltage_mv, 0)
-               get_cpu_count();
-               if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
-                               || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
-                       obj->data.cpu_index = 1;
-                       /* NORM_ERR("voltage_mv: Invalid CPU number or you don't have that many "
-                               "CPUs! Displaying voltage for CPU 1."); */
-               } else {
-                       obj->data.cpu_index = atoi(&arg[0]);
-               }
-               obj->a = 1;
-       END OBJ(voltage_v, 0)
-               get_cpu_count();
-               if (!arg || !isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) == 0
-                               || (unsigned int) atoi(&arg[0]) > info.cpu_count) {
-                       obj->data.cpu_index = 1;
-                       /* NORM_ERR("voltage_v: Invalid CPU number or you don't have that many "
-                               "CPUs! Displaying voltage for CPU 1."); */
-               } else {
-                       obj->data.cpu_index = atoi(&arg[0]);
-               }
-               obj->a = 1;
-
-#ifdef HAVE_IWLIB
-       END OBJ(wireless_essid, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-       END OBJ(wireless_mode, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-       END OBJ(wireless_bitrate, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-       END OBJ(wireless_ap, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-       END OBJ(wireless_link_qual, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-       END OBJ(wireless_link_qual_max, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-       END OBJ(wireless_link_qual_perc, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-       END OBJ(wireless_link_bar, INFO_NET)
-               SIZE_DEFAULTS(bar);
-               if (arg) {
-                       arg = scan_bar(arg, &obj->a, &obj->b);
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-#endif /* HAVE_IWLIB */
-
-#endif /* __linux__ */
-
-#ifndef __OpenBSD__
-       END OBJ(acpifan, 0)
-       END OBJ(battery, 0)
-               char bat[64];
-
-               if (arg) {
-                       sscanf(arg, "%63s", bat);
-               } else {
-                       strcpy(bat, "BAT0");
-               }
-               obj->data.s = strndup(bat, text_buffer_size);
-       END OBJ(battery_short, 0)
-               char bat[64];
-
-               if (arg) {
-                       sscanf(arg, "%63s", bat);
-               } else {
-                       strcpy(bat, "BAT0");
-               }
-               obj->data.s = strndup(bat, text_buffer_size);
-       END OBJ(battery_time, 0)
-               char bat[64];
-
-               if (arg) {
-                       sscanf(arg, "%63s", bat);
-               } else {
-                       strcpy(bat, "BAT0");
-               }
-               obj->data.s = strndup(bat, text_buffer_size);
-       END OBJ(battery_percent, 0)
-               char bat[64];
-
-               if (arg) {
-                       sscanf(arg, "%63s", bat);
-               } else {
-                       strcpy(bat, "BAT0");
-               }
-               obj->data.s = strndup(bat, text_buffer_size);
-       END OBJ(battery_bar, 0)
-               char bat[64];
-               SIZE_DEFAULTS(bar);
-               obj->b = 6;
-               if (arg) {
-                       arg = scan_bar(arg, &obj->a, &obj->b);
-                       sscanf(arg, "%63s", bat);
-               } else {
-                       strcpy(bat, "BAT0");
-               }
-               obj->data.s = strndup(bat, text_buffer_size);
-#endif /* !__OpenBSD__ */
-
-#if defined(__linux__)
-       END OBJ(disk_protect, 0)
-               if (arg)
-                       obj->data.s = strndup(dev_name(arg), text_buffer_size);
-               else
-                       CRIT_ERR(obj, free_at_crash, "disk_protect needs an argument");
-       END OBJ(i8k_version, INFO_I8K)
-       END OBJ(i8k_bios, INFO_I8K)
-       END OBJ(i8k_serial, INFO_I8K)
-       END OBJ(i8k_cpu_temp, INFO_I8K)
-       END OBJ(i8k_left_fan_status, INFO_I8K)
-       END OBJ(i8k_right_fan_status, INFO_I8K)
-       END OBJ(i8k_left_fan_rpm, INFO_I8K)
-       END OBJ(i8k_right_fan_rpm, INFO_I8K)
-       END OBJ(i8k_ac_status, INFO_I8K)
-       END OBJ(i8k_buttons_status, INFO_I8K)
-#if defined(IBM)
-       END OBJ(ibm_fan, 0)
-       END OBJ(ibm_temps, 0)
-               if (!arg) {
-                       CRIT_ERR(obj, free_at_crash, "ibm_temps: needs an argument");
-               }
-               if (!isdigit(arg[0]) || strlen(arg) >= 2 || atoi(&arg[0]) >= 8) {
-                       obj->data.sensor = 0;
-                       NORM_ERR("Invalid temperature sensor! Sensor number must be 0 to 7. "
-                               "Using 0 (CPU temp sensor).");
-               }
-               obj->data.sensor = atoi(&arg[0]);
-       END OBJ(ibm_volume, 0)
-       END OBJ(ibm_brightness, 0)
-#endif
-       /* information from sony_laptop kernel module
-        * /sys/devices/platform/sony-laptop */
-       END OBJ(sony_fanspeed, 0)
-       END OBJ_IF(if_gw, INFO_GW)
-       END OBJ(ioscheduler, 0)
-               if (!arg) {
-                       CRIT_ERR(obj, free_at_crash, "get_ioscheduler needs an argument (e.g. hda)");
-                       obj->data.s = 0;
-               } else
-                       obj->data.s = strndup(dev_name(arg), text_buffer_size);
-       END OBJ(laptop_mode, 0)
-       END OBJ(pb_battery, 0)
-               if (arg && strcmp(arg, "status") == EQUAL) {
-                       obj->data.i = PB_BATT_STATUS;
-               } else if (arg && strcmp(arg, "percent") == EQUAL) {
-                       obj->data.i = PB_BATT_PERCENT;
-               } else if (arg && strcmp(arg, "time") == EQUAL) {
-                       obj->data.i = PB_BATT_TIME;
-               } else {
-                       NORM_ERR("pb_battery: needs one argument: status, percent or time");
-                       free(obj);
-                       return NULL;
-               }
-
-#endif /* __linux__ */
-#if (defined(__FreeBSD__) || defined(__linux__))
-       END OBJ_IF(if_up, 0)
-               if (!arg) {
-                       NORM_ERR("if_up needs an argument");
-                       obj->data.ifblock.s = 0;
-               } else {
-                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
-               }
-#endif
-#if defined(__OpenBSD__)
-       END OBJ(obsd_sensors_temp, 0)
-               if (!arg) {
-                       CRIT_ERR(obj, free_at_crash, "obsd_sensors_temp: needs an argument");
-               }
-               if (!isdigit(arg[0]) || atoi(&arg[0]) < 0
-                               || atoi(&arg[0]) > OBSD_MAX_SENSORS - 1) {
-                       obj->data.sensor = 0;
-                       NORM_ERR("Invalid temperature sensor number!");
-               }
-               obj->data.sensor = atoi(&arg[0]);
-       END OBJ(obsd_sensors_fan, 0)
-               if (!arg) {
-                       CRIT_ERR(obj, free_at_crash, "obsd_sensors_fan: needs 2 arguments (device and sensor "
-                               "number)");
-               }
-               if (!isdigit(arg[0]) || atoi(&arg[0]) < 0
-                               || atoi(&arg[0]) > OBSD_MAX_SENSORS - 1) {
-                       obj->data.sensor = 0;
-                       NORM_ERR("Invalid fan sensor number!");
-               }
-               obj->data.sensor = atoi(&arg[0]);
-       END OBJ(obsd_sensors_volt, 0)
-               if (!arg) {
-                       CRIT_ERR(obj, free_at_crash, "obsd_sensors_volt: needs 2 arguments (device and sensor "
-                               "number)");
-               }
-               if (!isdigit(arg[0]) || atoi(&arg[0]) < 0
-                               || atoi(&arg[0]) > OBSD_MAX_SENSORS - 1) {
-                       obj->data.sensor = 0;
-                       NORM_ERR("Invalid voltage sensor number!");
-               }
-               obj->data.sensor = atoi(&arg[0]);
-       END OBJ(obsd_vendor, 0)
-       END OBJ(obsd_product, 0)
-#endif /* __OpenBSD__ */
-       END OBJ(buffers, INFO_BUFFERS)
-       END OBJ(cached, INFO_BUFFERS)
-#define SCAN_CPU(__arg, __var) { \
-       int __offset = 0; \
-       if (__arg && sscanf(__arg, " cpu%u %n", &__var, &__offset) > 0) \
-               __arg += __offset; \
-       else \
-               __var = 0; \
-}
-       END OBJ(cpu, INFO_CPU)
-               SCAN_CPU(arg, obj->data.cpu_index);
-               DBGP2("Adding $cpu for CPU %d", obj->data.cpu_index);
-#ifdef X11
-       END OBJ(cpugauge, INFO_CPU)
-               SIZE_DEFAULTS(gauge);
-               SCAN_CPU(arg, obj->data.cpu_index);
-               scan_gauge(arg, &obj->a, &obj->b);
-               DBGP2("Adding $cpugauge for CPU %d", obj->data.cpu_index);
-#endif /* X11 */
-       END OBJ(cpubar, INFO_CPU)
-               SIZE_DEFAULTS(bar);
-               SCAN_CPU(arg, obj->data.cpu_index);
-               scan_bar(arg, &obj->a, &obj->b);
-               DBGP2("Adding $cpubar for CPU %d", obj->data.cpu_index);
-#ifdef X11
-       END OBJ(cpugraph, INFO_CPU)
-               char *buf = 0;
-               SIZE_DEFAULTS(graph);
-               SCAN_CPU(arg, obj->data.cpu_index);
-               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
-                       &obj->e, &obj->char_a, &obj->char_b);
-               DBGP2("Adding $cpugraph for CPU %d", obj->data.cpu_index);
-               if (buf) free(buf);
-       END OBJ(loadgraph, INFO_LOADAVG)
-               char *buf = 0;
-               SIZE_DEFAULTS(graph);
-               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
-                               &obj->e, &obj->char_a, &obj->char_b);
-               if (buf) {
-                       int a = 1, r = 3;
-                       if (arg) {
-                               r = sscanf(arg, "%d", &a);
-                       }
-                       obj->data.loadavg[0] = (r >= 1) ? (unsigned char) a : 0;
-                       free(buf);
-               }
-#endif /* X11 */
-       END OBJ(diskio, INFO_DISKIO)
-               obj->data.diskio = prepare_diskio_stat(dev_name(arg));
-       END OBJ(diskio_read, INFO_DISKIO)
-               obj->data.diskio = prepare_diskio_stat(dev_name(arg));
-       END OBJ(diskio_write, INFO_DISKIO)
-               obj->data.diskio = prepare_diskio_stat(dev_name(arg));
-#ifdef X11
-       END OBJ(diskiograph, INFO_DISKIO)
-               char *buf = 0;
-               SIZE_DEFAULTS(graph);
-               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
-                               &obj->e, &obj->char_a, &obj->char_b);
-
-               obj->data.diskio = prepare_diskio_stat(dev_name(buf));
-               if (buf) free(buf);
-       END OBJ(diskiograph_read, INFO_DISKIO)
-               char *buf = 0;
-               SIZE_DEFAULTS(graph);
-               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
-                               &obj->e, &obj->char_a, &obj->char_b);
-
-               obj->data.diskio = prepare_diskio_stat(dev_name(buf));
-               if (buf) free(buf);
-       END OBJ(diskiograph_write, INFO_DISKIO)
-               char *buf = 0;
-               SIZE_DEFAULTS(graph);
-               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
-                               &obj->e, &obj->char_a, &obj->char_b);
-
-               obj->data.diskio = prepare_diskio_stat(dev_name(buf));
-               if (buf) free(buf);
-#endif /* X11 */
-       END OBJ(color, 0)
-#ifdef X11
-               if (output_methods & TO_X) {
-                       obj->data.l = arg ? get_x11_color(arg) : default_fg_color;
-                       set_current_text_color(obj->data.l);
-               }
-#endif /* X11 */
-#ifdef NCURSES
-               if (output_methods & TO_NCURSES) {
-                       obj->data.l = COLOR_WHITE;
-                       if(arg) {
-                               if(strcasecmp(arg, "red") == 0) {
-                                       obj->data.l = COLOR_RED;
-                               }else if(strcasecmp(arg, "green") == 0) {
-                                       obj->data.l = COLOR_GREEN;
-                               }else if(strcasecmp(arg, "yellow") == 0) {
-                                       obj->data.l = COLOR_YELLOW;
-                               }else if(strcasecmp(arg, "blue") == 0) {
-                                       obj->data.l = COLOR_BLUE;
-                               }else if(strcasecmp(arg, "magenta") == 0) {
-                                       obj->data.l = COLOR_MAGENTA;
-                               }else if(strcasecmp(arg, "cyan") == 0) {
-                                       obj->data.l = COLOR_CYAN;
-                               }else if(strcasecmp(arg, "black") == 0) {
-                                       obj->data.l = COLOR_BLACK;
-                               }
-                       }
-                       set_current_text_color(obj->data.l);
-                       init_pair(obj->data.l, obj->data.l, COLOR_BLACK);
-               }
-#endif /* NCURSES */
-       END OBJ(color0, 0)
-               obj->data.l = color0;
-               set_current_text_color(obj->data.l);
-       END OBJ(color1, 0)
-               obj->data.l = color1;
-               set_current_text_color(obj->data.l);
-       END OBJ(color2, 0)
-               obj->data.l = color2;
-               set_current_text_color(obj->data.l);
-       END OBJ(color3, 0)
-               obj->data.l = color3;
-               set_current_text_color(obj->data.l);
-       END OBJ(color4, 0)
-               obj->data.l = color4;
-               set_current_text_color(obj->data.l);
-       END OBJ(color5, 0)
-               obj->data.l = color5;
-               set_current_text_color(obj->data.l);
-       END OBJ(color6, 0)
-               obj->data.l = color6;
-               set_current_text_color(obj->data.l);
-       END OBJ(color7, 0)
-               obj->data.l = color7;
-               set_current_text_color(obj->data.l);
-       END OBJ(color8, 0)
-               obj->data.l = color8;
-               set_current_text_color(obj->data.l);
-       END OBJ(color9, 0)
-               obj->data.l = color9;
-               set_current_text_color(obj->data.l);
-#ifdef X11
-       END OBJ(font, 0)
-               obj->data.s = scan_font(arg);
-#endif /* X11 */
-       END OBJ(conky_version, 0)
-       END OBJ(conky_build_date, 0)
-       END OBJ(conky_build_arch, 0)
-       END OBJ(downspeed, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-       END OBJ(downspeedf, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-#ifdef X11
-       END OBJ(downspeedgraph, INFO_NET)
-               char *buf = 0;
-               SIZE_DEFAULTS(graph);
-               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
-                               &obj->e, &obj->char_a, &obj->char_b);
-
-               // default to DEFAULTNETDEV
-               buf = strndup(buf ? buf : DEFAULTNETDEV, text_buffer_size);
-               obj->data.net = get_net_stat(buf, obj, free_at_crash);
-               free(buf);
-#endif /* X11 */
-       END OBJ(else, 0)
-               obj_be_ifblock_else(ifblock_opaque, obj);
-       END OBJ(endif, 0)
-               obj_be_ifblock_endif(ifblock_opaque, obj);
-       END OBJ(eval, 0)
-               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
-       END OBJ(image, 0)
-               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
-       END OBJ(exec, 0)
-               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
-       END OBJ(execp, 0)
-               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
-       END OBJ(execbar, 0)
-               SIZE_DEFAULTS(bar);
-               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
-#ifdef X11
-       END OBJ(execgauge, 0)
-               SIZE_DEFAULTS(gauge);
-               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
-       END OBJ(execgraph, 0)
-               SIZE_DEFAULTS(graph);
-               obj->data.s = strndup(arg ? arg : "", text_buffer_size);
-#endif /* X11 */
-       END OBJ(execibar, 0)
-               int n;
-               SIZE_DEFAULTS(bar);
-
-               if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
-                       char buf[256];
-
-                       NORM_ERR("${execibar <interval> command}");
-                       obj->type = OBJ_text;
-                       snprintf(buf, 256, "${%s}", s);
-                       obj->data.s = strndup(buf, text_buffer_size);
-               } else {
-                       obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
-               }
-#ifdef X11
-       END OBJ(execigraph, 0)
-               int n;
-               SIZE_DEFAULTS(graph);
-
-               if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
-                       char buf[256];
-
-                       NORM_ERR("${execigraph <interval> command}");
-                       obj->type = OBJ_text;
-                       snprintf(buf, 256, "${%s}", s);
-                       obj->data.s = strndup(buf, text_buffer_size);
-               } else {
-                       obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
-               }
-       END OBJ(execigauge, 0)
-               int n;
-               SIZE_DEFAULTS(gauge);
-
-               if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
-                       char buf[256];
-
-                       NORM_ERR("${execigauge <interval> command}");
-                       obj->type = OBJ_text;
-                       snprintf(buf, 256, "${%s}", s);
-                       obj->data.s = strndup(buf, text_buffer_size);
-               } else {
-                       obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
-               }
-#endif /* X11 */
-       END OBJ(execi, 0)
-               int n;
-
-               if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
-                       char buf[256];
-
-                       NORM_ERR("${execi <interval> command}");
-                       obj->type = OBJ_text;
-                       snprintf(buf, 256, "${%s}", s);
-                       obj->data.s = strndup(buf, text_buffer_size);
-               } else {
-                       obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
-                       obj->data.execi.buffer = malloc(text_buffer_size);
-               }
-       END OBJ(execpi, 0)
-               int n;
-
-               if (!arg || sscanf(arg, "%f %n", &obj->data.execi.interval, &n) <= 0) {
-                       char buf[256];
-
-                       NORM_ERR("${execi <interval> command}");
-                       obj->type = OBJ_text;
-                       snprintf(buf, 256, "${%s}", s);
-                       obj->data.s = strndup(buf, text_buffer_size);
-               } else {
-                       obj->data.execi.cmd = strndup(arg + n, text_buffer_size);
-                       obj->data.execi.buffer = malloc(text_buffer_size);
-               }
-       END OBJ(texeci, 0)
-                       int n;
-
-                       if (!arg || sscanf(arg, "%f %n", &obj->data.texeci.interval, &n) <= 0) {
-                               char buf[256];
-
-                               NORM_ERR("${texeci <interval> command}");
-                               obj->type = OBJ_text;
-                               snprintf(buf, 256, "${%s}", s);
-                               obj->data.s = strndup(buf, text_buffer_size);
-                       } else {
-                               obj->data.texeci.cmd = strndup(arg + n, text_buffer_size);
-                               obj->data.texeci.buffer = malloc(text_buffer_size);
-                       }
-                       obj->data.texeci.p_timed_thread = NULL;
-       END OBJ(pre_exec, 0)
-               obj->type = OBJ_text;
-               if (arg) {
-                       char buf[2048];
-
-                       do_read_exec(arg, buf, sizeof(buf));
-                       obj->data.s = strndup(buf, text_buffer_size);
-               } else {
-                       obj->data.s = strndup("", text_buffer_size);
-               }
-       END OBJ(fs_bar, INFO_FS)
-               SIZE_DEFAULTS(bar);
-               arg = scan_bar(arg, &obj->data.fsbar.w, &obj->data.fsbar.h);
-               if (arg) {
-                       while (isspace(*arg)) {
-                               arg++;
-                       }
-                       if (*arg == '\0') {
-                               arg = "/";
-                       }
-               } else {
-                       arg = "/";
-               }
-               obj->data.fsbar.fs = prepare_fs_stat(arg);
-       END OBJ(fs_bar_free, INFO_FS)
-               SIZE_DEFAULTS(bar);
-               arg = scan_bar(arg, &obj->data.fsbar.w, &obj->data.fsbar.h);
-               if (arg) {
-                       while (isspace(*arg)) {
-                               arg++;
-                       }
-                       if (*arg == '\0') {
-                               arg = "/";
-                       }
-               } else {
-                       arg = "/";
-               }
-
-               obj->data.fsbar.fs = prepare_fs_stat(arg);
-       END OBJ(fs_free, INFO_FS)
-               if (!arg) {
-                       arg = "/";
-               }
-               obj->data.fs = prepare_fs_stat(arg);
-       END OBJ(fs_used_perc, INFO_FS)
-               if (!arg) {
-                       arg = "/";
-               }
-               obj->data.fs = prepare_fs_stat(arg);
-       END OBJ(fs_free_perc, INFO_FS)
-               if (!arg) {
-                       arg = "/";
-               }
-               obj->data.fs = prepare_fs_stat(arg);
-       END OBJ(fs_size, INFO_FS)
-               if (!arg) {
-                       arg = "/";
-               }
-               obj->data.fs = prepare_fs_stat(arg);
-       END OBJ(fs_type, INFO_FS)
-               if (!arg) {
-                       arg = "/";
-               }
-               obj->data.fs = prepare_fs_stat(arg);
-       END OBJ(fs_used, INFO_FS)
-               if (!arg) {
-                       arg = "/";
-               }
-               obj->data.fs = prepare_fs_stat(arg);
-       END OBJ(hr, 0)
-               obj->data.i = arg ? atoi(arg) : 1;
-       END OBJ(nameserver, INFO_DNS)
-               obj->data.i = arg ? atoi(arg) : 0;
-       END OBJ(offset, 0)
-               obj->data.i = arg ? atoi(arg) : 1;
-       END OBJ(voffset, 0)
-               obj->data.i = arg ? atoi(arg) : 1;
-       END OBJ(goto, 0)
-
-               if (!arg) {
-                       NORM_ERR("goto needs arguments");
-                       obj->type = OBJ_text;
-                       obj->data.s = strndup("${goto}", text_buffer_size);
-                       return NULL;
-               }
-
-               obj->data.i = atoi(arg);
-
-       END OBJ(tab, 0)
-               int a = 10, b = 0;
-
-               if (arg) {
-                       if (sscanf(arg, "%d %d", &a, &b) != 2) {
-                               sscanf(arg, "%d", &b);
-                       }
-               }
-               if (a <= 0) {
-                       a = 1;
-               }
-               obj->data.pair.a = a;
-               obj->data.pair.b = b;
-
-#ifdef __linux__
-       END OBJ(i2c, INFO_SYSFS)
-               char buf1[64], buf2[64];
-               float factor, offset;
-               int n, found = 0;
-
-               if (!arg) {
-                       NORM_ERR("i2c needs arguments");
-                       obj->type = OBJ_text;
-                       // obj->data.s = strndup("${i2c}", text_buffer_size);
-                       return NULL;
-               }
-
-#define HWMON_RESET() {\
-               buf1[0] = 0; \
-               factor = 1.0; \
-               offset = 0.0; }
-
-               if (sscanf(arg, "%63s %d %f %f", buf2, &n, &factor, &offset) == 4) found = 1; else HWMON_RESET();
-               if (!found && sscanf(arg, "%63s %63s %d %f %f", buf1, buf2, &n, &factor, &offset) == 5) found = 1; else if (!found) HWMON_RESET();
-               if (!found && sscanf(arg, "%63s %63s %d", buf1, buf2, &n) == 3) found = 1; else if (!found) HWMON_RESET();
-               if (!found && sscanf(arg, "%63s %d", buf2, &n) == 2) found = 1; else if (!found) HWMON_RESET();
-
-               if (!found) {
-                       NORM_ERR("i2c failed to parse arguments");
-                       obj->type = OBJ_text;
-                       return NULL;
-               }
-               DBGP("parsed i2c args: '%s' '%s' %d %f %f\n", buf1, buf2, n, factor, offset);
-               obj->data.sysfs.fd = open_i2c_sensor((*buf1) ? buf1 : 0, buf2, n,
-                               &obj->data.sysfs.arg, obj->data.sysfs.devtype);
-               strncpy(obj->data.sysfs.type, buf2, 63);
-               obj->data.sysfs.factor = factor;
-               obj->data.sysfs.offset = offset;
-
-       END OBJ(platform, INFO_SYSFS)
-               char buf1[64], buf2[64];
-               float factor, offset;
-               int n, found = 0;
-
-               if (!arg) {
-                       NORM_ERR("platform needs arguments");
-                       obj->type = OBJ_text;
-                       return NULL;
-               }
-
-               if (sscanf(arg, "%63s %d %f %f", buf2, &n, &factor, &offset) == 4) found = 1; else HWMON_RESET();
-               if (!found && sscanf(arg, "%63s %63s %d %f %f", buf1, buf2, &n, &factor, &offset) == 5) found = 1; else if (!found) HWMON_RESET();
-               if (!found && sscanf(arg, "%63s %63s %d", buf1, buf2, &n) == 3) found = 1; else if (!found) HWMON_RESET();
-               if (!found && sscanf(arg, "%63s %d", buf2, &n) == 2) found = 1; else if (!found) HWMON_RESET();
-
-               if (!found) {
-                       NORM_ERR("platform failed to parse arguments");
-                       obj->type = OBJ_text;
-                       return NULL;
-               }
-               DBGP("parsed platform args: '%s' '%s' %d %f %f", buf1, buf2, n, factor, offset);
-               obj->data.sysfs.fd = open_platform_sensor((*buf1) ? buf1 : 0, buf2, n,
-                               &obj->data.sysfs.arg, obj->data.sysfs.devtype);
-               strncpy(obj->data.sysfs.type, buf2, 63);
-               obj->data.sysfs.factor = factor;
-               obj->data.sysfs.offset = offset;
-
-       END OBJ(hwmon, INFO_SYSFS)
-               char buf1[64], buf2[64];
-               float factor, offset;
-               int n, found = 0;
-
-               if (!arg) {
-                       NORM_ERR("hwmon needs argumanets");
-                       obj->type = OBJ_text;
-                       return NULL;
-               }
-
-               if (sscanf(arg, "%63s %d %f %f", buf2, &n, &factor, &offset) == 4) found = 1; else HWMON_RESET();
-               if (!found && sscanf(arg, "%63s %63s %d %f %f", buf1, buf2, &n, &factor, &offset) == 5) found = 1; else if (!found) HWMON_RESET();
-               if (!found && sscanf(arg, "%63s %63s %d", buf1, buf2, &n) == 3) found = 1; else if (!found) HWMON_RESET();
-               if (!found && sscanf(arg, "%63s %d", buf2, &n) == 2) found = 1; else if (!found) HWMON_RESET();
-
-#undef HWMON_RESET
-
-               if (!found) {
-                       NORM_ERR("hwmon failed to parse arguments");
-                       obj->type = OBJ_text;
-                       return NULL;
-               }
-               DBGP("parsed hwmon args: '%s' '%s' %d %f %f\n", buf1, buf2, n, factor, offset);
-               obj->data.sysfs.fd = open_hwmon_sensor((*buf1) ? buf1 : 0, buf2, n,
-                               &obj->data.sysfs.arg, obj->data.sysfs.devtype);
-               strncpy(obj->data.sysfs.type, buf2, 63);
-               obj->data.sysfs.factor = factor;
-               obj->data.sysfs.offset = offset;
-
-#endif /* !__OpenBSD__ */
-
-       END
-       /* we have four different types of top (top, top_mem, top_time and top_io). To
-        * avoid having almost-same code four times, we have this special
-        * handler. */
-       if (strncmp(s, "top", 3) == EQUAL) {
-               if (!parse_top_args(s, arg, obj)) {
-                       return NULL;
-               }
-       } else OBJ(addr, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-#if defined(__linux__)
-       END OBJ(addrs, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-#endif /* __linux__ */
-       END OBJ(tail, 0)
-               init_tailhead("tail", arg, obj, free_at_crash);
-       END OBJ(head, 0)
-               init_tailhead("head", arg, obj, free_at_crash);
-       END OBJ(lines, 0)
-               if (arg) {
-                       obj->data.s = strndup(arg, text_buffer_size);
-               }else{
-                       CRIT_ERR(obj, free_at_crash, "lines needs a argument");
-               }
-       END OBJ(words, 0)
-               if (arg) {
-                       obj->data.s = strndup(arg, text_buffer_size);
-               }else{
-                       CRIT_ERR(obj, free_at_crash, "words needs a argument");
-               }
-       END OBJ(loadavg, INFO_LOADAVG)
-               int a = 1, b = 2, c = 3, r = 3;
-
-               if (arg) {
-                       r = sscanf(arg, "%d %d %d", &a, &b, &c);
-                       if (r >= 3 && (c < 1 || c > 3)) {
-                               r--;
-                       }
-                       if (r >= 2 && (b < 1 || b > 3)) {
-                               r--, b = c;
-                       }
-                       if (r >= 1 && (a < 1 || a > 3)) {
-                               r--, a = b, b = c;
-                       }
-               }
-               obj->data.loadavg[0] = (r >= 1) ? (unsigned char) a : 0;
-               obj->data.loadavg[1] = (r >= 2) ? (unsigned char) b : 0;
-               obj->data.loadavg[2] = (r >= 3) ? (unsigned char) c : 0;
-       END OBJ_IF(if_empty, 0)
-               if (!arg) {
-                       NORM_ERR("if_empty needs an argument");
-                       obj->data.ifblock.s = 0;
-               } else {
-                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
-                       obj->sub = malloc(sizeof(struct text_object));
-                       extract_variable_text_internal(obj->sub,
-                                                      obj->data.ifblock.s);
-               }
-       END OBJ_IF(if_match, 0)
-               if (!arg) {
-                       NORM_ERR("if_match needs arguments");
-                       obj->data.ifblock.s = 0;
-               } else {
-                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
-                       obj->sub = malloc(sizeof(struct text_object));
-                       extract_variable_text_internal(obj->sub,
-                                                      obj->data.ifblock.s);
-               }
-       END OBJ_IF(if_existing, 0)
-               if (!arg) {
-                       NORM_ERR("if_existing needs an argument or two");
-                       obj->data.ifblock.s = NULL;
-                       obj->data.ifblock.str = NULL;
-               } else {
-                       char buf1[256], buf2[256];
-                       int r = sscanf(arg, "%255s %255[^\n]", buf1, buf2);
-
-                       if (r == 1) {
-                               obj->data.ifblock.s = strndup(buf1, text_buffer_size);
-                               obj->data.ifblock.str = NULL;
-                       } else {
-                               obj->data.ifblock.s = strndup(buf1, text_buffer_size);
-                               obj->data.ifblock.str = strndup(buf2, text_buffer_size);
-                       }
-               }
-               DBGP("if_existing: '%s' '%s'", obj->data.ifblock.s, obj->data.ifblock.str);
-       END OBJ_IF(if_mounted, 0)
-               if (!arg) {
-                       NORM_ERR("if_mounted needs an argument");
-                       obj->data.ifblock.s = 0;
-               } else {
-                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
-               }
-#ifdef __linux__
-       END OBJ_IF(if_running, INFO_TOP)
-               if (arg) {
-                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
-#else
-       END OBJ_IF(if_running, 0)
-               if (arg) {
-                       char buf[256];
-
-                       snprintf(buf, 256, "pidof %s >/dev/null", arg);
-                       obj->data.ifblock.s = strndup(buf, text_buffer_size);
-#endif
-               } else {
-                       NORM_ERR("if_running needs an argument");
-                       obj->data.ifblock.s = 0;
-               }
-       END OBJ(kernel, 0)
-       END OBJ(machine, 0)
-       END OBJ(mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       /* Kapil: Changed from MAIL_FILE to
-                          current_mail_spool since the latter
-                          is a copy of the former if undefined
-                          but the latter should take precedence
-                          if defined */
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(new_mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(seen_mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(unseen_mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(flagged_mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(unflagged_mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(forwarded_mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(unforwarded_mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(replied_mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(unreplied_mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(draft_mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(trashed_mails, 0)
-               float n1;
-               char mbox[256], dst[256];
-
-               if (!arg) {
-                       n1 = 9.5;
-                       strncpy(mbox, current_mail_spool, sizeof(mbox));
-               } else {
-                       if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
-                               n1 = 9.5;
-                               strncpy(mbox, arg, sizeof(mbox));
-                       }
-               }
-
-               variable_substitute(mbox, dst, sizeof(dst));
-               obj->data.local_mail.mbox = strndup(dst, text_buffer_size);
-               obj->data.local_mail.interval = n1;
-       END OBJ(mboxscan, 0)
-               obj->data.mboxscan.args = (char *) malloc(text_buffer_size);
-               obj->data.mboxscan.output = (char *) malloc(text_buffer_size);
-               /* if '1' (in mboxscan.c) then there was SIGUSR1, hmm */
-               obj->data.mboxscan.output[0] = 1;
-               strncpy(obj->data.mboxscan.args, arg, text_buffer_size);
-       END OBJ(mem, INFO_MEM)
-       END OBJ(memeasyfree, INFO_MEM)
-       END OBJ(memfree, INFO_MEM)
-       END OBJ(memmax, INFO_MEM)
-       END OBJ(memperc, INFO_MEM)
-#ifdef X11
-       END OBJ(memgauge, INFO_MEM)
-               SIZE_DEFAULTS(gauge);
-               scan_gauge(arg, &obj->data.pair.a, &obj->data.pair.b);
-#endif /* X11*/
-       END OBJ(membar, INFO_MEM)
-               SIZE_DEFAULTS(bar);
-               scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
-#ifdef X11
-       END OBJ(memgraph, INFO_MEM)
-               char *buf = 0;
-               SIZE_DEFAULTS(graph);
-               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
-                               &obj->e, &obj->char_a, &obj->char_b);
-
-               if (buf) free(buf);
-#endif /* X11*/
-       END OBJ(mixer, INFO_MIXER)
-               obj->data.l = mixer_init(arg);
-       END OBJ(mixerl, INFO_MIXER)
-               obj->data.l = mixer_init(arg);
-       END OBJ(mixerr, INFO_MIXER)
-               obj->data.l = mixer_init(arg);
-#ifdef X11
-       END OBJ(mixerbar, INFO_MIXER)
-               SIZE_DEFAULTS(bar);
-               scan_mixer_bar(arg, &obj->data.mixerbar.l, &obj->data.mixerbar.w,
-                       &obj->data.mixerbar.h);
-       END OBJ(mixerlbar, INFO_MIXER)
-               SIZE_DEFAULTS(bar);
-               scan_mixer_bar(arg, &obj->data.mixerbar.l, &obj->data.mixerbar.w,
-                       &obj->data.mixerbar.h);
-       END OBJ(mixerrbar, INFO_MIXER)
-               SIZE_DEFAULTS(bar);
-               scan_mixer_bar(arg, &obj->data.mixerbar.l, &obj->data.mixerbar.w,
-                       &obj->data.mixerbar.h);
-#endif
-       END OBJ_IF(if_mixer_mute, INFO_MIXER)
-               obj->data.ifblock.i = mixer_init(arg);
-#ifdef X11
-       END OBJ(monitor, INFO_X11)
-       END OBJ(monitor_number, INFO_X11)
-       END OBJ(desktop, INFO_X11)
-       END OBJ(desktop_number, INFO_X11)
-       END OBJ(desktop_name, INFO_X11)
-#endif
-       END OBJ(nodename, 0)
-       END OBJ(processes, INFO_PROCS)
-       END OBJ(running_processes, INFO_RUN_PROCS)
-       END OBJ(shadecolor, 0)
-#ifdef X11
-               obj->data.l = arg ? get_x11_color(arg) : default_bg_color;
-#endif /* X11 */
-       END OBJ(outlinecolor, 0)
-#ifdef X11
-               obj->data.l = arg ? get_x11_color(arg) : default_out_color;
-#endif /* X11 */
-       END OBJ(stippled_hr, 0)
-#ifdef X11
-               int a = get_stippled_borders(), b = 1;
-
-               if (arg) {
-                       if (sscanf(arg, "%d %d", &a, &b) != 2) {
-                               sscanf(arg, "%d", &b);
-                       }
-               }
-               if (a <= 0) {
-                       a = 1;
-               }
-               obj->data.pair.a = a;
-               obj->data.pair.b = b;
-#endif /* X11 */
-       END OBJ(swap, INFO_MEM)
-       END OBJ(swapfree, INFO_MEM)
-       END OBJ(swapmax, INFO_MEM)
-       END OBJ(swapperc, INFO_MEM)
-       END OBJ(swapbar, INFO_MEM)
-               SIZE_DEFAULTS(bar);
-               scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
-       END OBJ(sysname, 0)
-       END OBJ(time, 0)
-               obj->data.s = strndup(arg ? arg : "%F %T", text_buffer_size);
-       END OBJ(utime, 0)
-               obj->data.s = strndup(arg ? arg : "%F %T", text_buffer_size);
-       END OBJ(tztime, 0)
-               char buf1[256], buf2[256], *fmt, *tz;
-
-               fmt = tz = NULL;
-               if (arg) {
-                       int nArgs = sscanf(arg, "%255s %255[^\n]", buf1, buf2);
-
-                       switch (nArgs) {
-                               case 2:
-                                       tz = buf1;
-                               case 1:
-                                       fmt = buf2;
-                       }
-               }
-
-               obj->data.tztime.fmt = strndup(fmt ? fmt : "%F %T", text_buffer_size);
-               obj->data.tztime.tz = tz ? strndup(tz, text_buffer_size) : NULL;
-#ifdef HAVE_ICONV
-       END OBJ(iconv_start, 0)
-               if (is_iconv_converting()) {
-                       CRIT_ERR(obj, free_at_crash, "You must stop your last iconv conversion before "
-                               "starting another");
-               }
-               if (arg) {
-                       char iconv_from[ICONV_CODEPAGE_LENGTH];
-                       char iconv_to[ICONV_CODEPAGE_LENGTH];
-
-                       if (sscanf(arg, "%s %s", iconv_from, iconv_to) != 2) {
-                               CRIT_ERR(obj, free_at_crash, "Invalid arguments for iconv_start");
-                       } else {
-                               iconv_t new_iconv;
-
-                               new_iconv = iconv_open(iconv_to, iconv_from);
-                               if (new_iconv == (iconv_t) (-1)) {
-                                       NORM_ERR("Can't convert from %s to %s.", iconv_from, iconv_to);
-                               } else {
-                                       obj->a = register_iconv(&new_iconv);
-                                       set_iconv_converting(1);
-                               }
-                       }
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "Iconv requires arguments");
-               }
-       END OBJ(iconv_stop, 0)
-               set_iconv_converting(0);
-
-#endif
-       END OBJ(totaldown, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-       END OBJ(totalup, INFO_NET)
-               obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-       END OBJ(updates, 0)
-       END OBJ_IF(if_updatenr, 0)
-               obj->data.ifblock.i = arg ? atoi(arg) : 0;
-               if(obj->data.ifblock.i == 0) CRIT_ERR(obj, free_at_crash, "if_updatenr needs a number above 0 as argument");
-               set_updatereset(obj->data.ifblock.i > get_updatereset() ? obj->data.ifblock.i : get_updatereset());
-       END OBJ(alignr, 0)
-               obj->data.i = arg ? atoi(arg) : 0;
-       END OBJ(alignc, 0)
-               obj->data.i = arg ? atoi(arg) : 0;
-       END OBJ(upspeed, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-       END OBJ(upspeedf, INFO_NET)
-               if (arg) {
-                       obj->data.net = get_net_stat(arg, obj, free_at_crash);
-               } else {
-                       // default to DEFAULTNETDEV
-                       char *buf = strndup(DEFAULTNETDEV, text_buffer_size);
-                       obj->data.net = get_net_stat(buf, obj, free_at_crash);
-                       free(buf);
-               }
-
-#ifdef X11
-       END OBJ(upspeedgraph, INFO_NET)
-               char *buf = 0;
-               SIZE_DEFAULTS(graph);
-               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
-                               &obj->e, &obj->char_a, &obj->char_b);
-
-               // default to DEFAULTNETDEV
-               buf = strndup(buf ? buf : DEFAULTNETDEV, text_buffer_size);
-               obj->data.net = get_net_stat(buf, obj, free_at_crash);
-               free(buf);
-#endif
-       END OBJ(uptime_short, INFO_UPTIME)
-       END OBJ(uptime, INFO_UPTIME)
-       END OBJ(user_names, INFO_USERS)
-       END OBJ(user_times, INFO_USERS)
-       END OBJ(user_terms, INFO_USERS)
-       END OBJ(user_number, INFO_USERS)
-#if defined(__linux__)
-       END OBJ(gw_iface, INFO_GW)
-       END OBJ(gw_ip, INFO_GW)
-#endif /* !__linux__ */
-#ifndef __OpenBSD__
-       END OBJ(adt746xcpu, 0)
-       END OBJ(adt746xfan, 0)
-#endif /* !__OpenBSD__ */
-#if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) \
-               || defined(__OpenBSD__)) && (defined(i386) || defined(__i386__))
-       END OBJ(apm_adapter, 0)
-       END OBJ(apm_battery_life, 0)
-       END OBJ(apm_battery_time, 0)
-#endif /* __FreeBSD__ */
-       END OBJ(imap_unseen, 0)
-               if (arg) {
-                       // proccss
-                       obj->data.mail = parse_mail_args(IMAP_TYPE, arg);
-                       obj->char_b = 0;
-               } else {
-                       obj->char_b = 1;
-               }
-       END OBJ(imap_messages, 0)
-               if (arg) {
-                       // proccss
-                       obj->data.mail = parse_mail_args(IMAP_TYPE, arg);
-                       obj->char_b = 0;
-               } else {
-                       obj->char_b = 1;
-               }
-       END OBJ(pop3_unseen, 0)
-               if (arg) {
-                       // proccss
-                       obj->data.mail = parse_mail_args(POP3_TYPE, arg);
-                       obj->char_b = 0;
-               } else {
-                       obj->char_b = 1;
-               }
-       END OBJ(pop3_used, 0)
-               if (arg) {
-                       // proccss
-                       obj->data.mail = parse_mail_args(POP3_TYPE, arg);
-                       obj->char_b = 0;
-               } else {
-                       obj->char_b = 1;
-               }
-#ifdef IBM
-       END OBJ(smapi, 0)
-               if (arg)
-                       obj->data.s = strndup(arg, text_buffer_size);
-               else
-                       NORM_ERR("smapi needs an argument");
-       END OBJ_IF(if_smapi_bat_installed, 0)
-               if (!arg) {
-                       NORM_ERR("if_smapi_bat_installed needs an argument");
-                       obj->data.ifblock.s = 0;
-               } else
-                       obj->data.ifblock.s = strndup(arg, text_buffer_size);
-       END OBJ(smapi_bat_perc, 0)
-               if (arg)
-                       obj->data.s = strndup(arg, text_buffer_size);
-               else
-                       NORM_ERR("smapi_bat_perc needs an argument");
-       END OBJ(smapi_bat_temp, 0)
-               if (arg)
-                       obj->data.s = strndup(arg, text_buffer_size);
-               else
-                       NORM_ERR("smapi_bat_temp needs an argument");
-       END OBJ(smapi_bat_power, 0)
-               if (arg)
-                       obj->data.s = strndup(arg, text_buffer_size);
-               else
-                       NORM_ERR("smapi_bat_power needs an argument");
-#ifdef X11
-       END OBJ(smapi_bat_bar, 0)
-               SIZE_DEFAULTS(bar);
-               if(arg) {
-                       int cnt;
-                       if(sscanf(arg, "%i %n", &obj->data.i, &cnt) <= 0) {
-                               NORM_ERR("first argument to smapi_bat_bar must be an integer value");
-                               obj->data.i = -1;
-                       } else {
-                               obj->b = 4;
-                               arg = scan_bar(arg + cnt, &obj->a, &obj->b);
-                       }
-               } else
-                       NORM_ERR("smapi_bat_bar needs an argument");
-#endif /* X11 */
-#endif /* IBM */
-#ifdef MPD
-#define mpd_set_maxlen(name) \
-               if (arg) { \
-                       int i; \
-                       sscanf(arg, "%d", &i); \
-                       if (i > 0) \
-                               obj->data.i = i + 1; \
-                       else \
-                               NORM_ERR(#name ": invalid length argument"); \
-               }
-       END OBJ(mpd_artist, INFO_MPD)
-               mpd_set_maxlen(mpd_artist);
-               init_mpd();
-       END OBJ(mpd_title, INFO_MPD)
-               mpd_set_maxlen(mpd_title);
-               init_mpd();
-       END OBJ(mpd_random, INFO_MPD) init_mpd();
-       END OBJ(mpd_repeat, INFO_MPD) init_mpd();
-       END OBJ(mpd_elapsed, INFO_MPD) init_mpd();
-       END OBJ(mpd_length, INFO_MPD) init_mpd();
-       END OBJ(mpd_track, INFO_MPD)
-               mpd_set_maxlen(mpd_track);
-               init_mpd();
-       END OBJ(mpd_name, INFO_MPD)
-               mpd_set_maxlen(mpd_name);
-               init_mpd();
-       END OBJ(mpd_file, INFO_MPD)
-               mpd_set_maxlen(mpd_file);
-               init_mpd();
-       END OBJ(mpd_percent, INFO_MPD) init_mpd();
-       END OBJ(mpd_album, INFO_MPD)
-               mpd_set_maxlen(mpd_album);
-               init_mpd();
-       END OBJ(mpd_vol, INFO_MPD) init_mpd();
-       END OBJ(mpd_bitrate, INFO_MPD) init_mpd();
-       END OBJ(mpd_status, INFO_MPD) init_mpd();
-       END OBJ(mpd_bar, INFO_MPD)
-               SIZE_DEFAULTS(bar);
-               scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
-               init_mpd();
-       END OBJ(mpd_smart, INFO_MPD)
-               mpd_set_maxlen(mpd_smart);
-               init_mpd();
-       END OBJ_IF(if_mpd_playing, INFO_MPD)
-               init_mpd();
-#undef mpd_set_maxlen
-#endif /* MPD */
-#ifdef MOC
-       END OBJ(moc_state, INFO_MOC)
-       END OBJ(moc_file, INFO_MOC)
-       END OBJ(moc_title, INFO_MOC)
-       END OBJ(moc_artist, INFO_MOC)
-       END OBJ(moc_song, INFO_MOC)
-       END OBJ(moc_album, INFO_MOC)
-       END OBJ(moc_totaltime, INFO_MOC)
-       END OBJ(moc_timeleft, INFO_MOC)
-       END OBJ(moc_curtime, INFO_MOC)
-       END OBJ(moc_bitrate, INFO_MOC)
-       END OBJ(moc_rate, INFO_MOC)
-#endif /* MOC */
-#ifdef XMMS2
-       END OBJ(xmms2_artist, INFO_XMMS2)
-       END OBJ(xmms2_album, INFO_XMMS2)
-       END OBJ(xmms2_title, INFO_XMMS2)
-       END OBJ(xmms2_genre, INFO_XMMS2)
-       END OBJ(xmms2_comment, INFO_XMMS2)
-       END OBJ(xmms2_url, INFO_XMMS2)
-       END OBJ(xmms2_tracknr, INFO_XMMS2)
-       END OBJ(xmms2_bitrate, INFO_XMMS2)
-       END OBJ(xmms2_date, INFO_XMMS2)
-       END OBJ(xmms2_id, INFO_XMMS2)
-       END OBJ(xmms2_duration, INFO_XMMS2)
-       END OBJ(xmms2_elapsed, INFO_XMMS2)
-       END OBJ(xmms2_size, INFO_XMMS2)
-       END OBJ(xmms2_status, INFO_XMMS2)
-       END OBJ(xmms2_percent, INFO_XMMS2)
-#ifdef X11
-       END OBJ(xmms2_bar, INFO_XMMS2)
-               SIZE_DEFAULTS(bar);
-               scan_bar(arg, &obj->data.pair.a, &obj->data.pair.b);
-#endif /* X11 */
-       END OBJ(xmms2_smart, INFO_XMMS2)
-       END OBJ(xmms2_playlist, INFO_XMMS2)
-       END OBJ(xmms2_timesplayed, INFO_XMMS2)
-       END OBJ_IF(if_xmms2_connected, INFO_XMMS2)
-#endif
-#ifdef AUDACIOUS
-       END OBJ(audacious_status, INFO_AUDACIOUS)
-       END OBJ(audacious_title, INFO_AUDACIOUS)
-               if (arg) {
-                       sscanf(arg, "%d", &info.audacious.max_title_len);
-                       if (info.audacious.max_title_len > 0) {
-                               info.audacious.max_title_len++;
-                       } else {
-                               CRIT_ERR(obj, free_at_crash, "audacious_title: invalid length argument");
-                       }
-               }
-       END OBJ(audacious_length, INFO_AUDACIOUS)
-       END OBJ(audacious_length_seconds, INFO_AUDACIOUS)
-       END OBJ(audacious_position, INFO_AUDACIOUS)
-       END OBJ(audacious_position_seconds, INFO_AUDACIOUS)
-       END OBJ(audacious_bitrate, INFO_AUDACIOUS)
-       END OBJ(audacious_frequency, INFO_AUDACIOUS)
-       END OBJ(audacious_channels, INFO_AUDACIOUS)
-       END OBJ(audacious_filename, INFO_AUDACIOUS)
-       END OBJ(audacious_playlist_length, INFO_AUDACIOUS)
-       END OBJ(audacious_playlist_position, INFO_AUDACIOUS)
-       END OBJ(audacious_main_volume, INFO_AUDACIOUS)
-#ifdef X11
-       END OBJ(audacious_bar, INFO_AUDACIOUS)
-               SIZE_DEFAULTS(bar);
-               scan_bar(arg, &obj->a, &obj->b);
-#endif /* X11 */
-#endif
-#ifdef BMPX
-       END OBJ(bmpx_title, INFO_BMPX)
-               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
-       END OBJ(bmpx_artist, INFO_BMPX)
-               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
-       END OBJ(bmpx_album, INFO_BMPX)
-               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
-       END OBJ(bmpx_track, INFO_BMPX)
-               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
-       END OBJ(bmpx_uri, INFO_BMPX)
-               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
-       END OBJ(bmpx_bitrate, INFO_BMPX)
-               memset(&(info.bmpx), 0, sizeof(struct bmpx_s));
-#endif
-#ifdef EVE
-       END OBJ(eve, 0)
-               if(arg) {
-                       int argc;
-                       char *userid = (char *) malloc(20 * sizeof(char));
-                       char *apikey = (char *) malloc(64 * sizeof(char));
-                       char *charid = (char *) malloc(20 * sizeof(char));
-
-                       argc = sscanf(arg, "%20s %64s %20s", userid, apikey, charid);
-                       obj->data.eve.charid = charid;
-                       obj->data.eve.userid = userid;
-                       obj->data.eve.apikey = apikey;
-
-                       init_eve();
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "eve needs arguments: <userid> <apikey> <characterid>");
-               }
-#endif
-#ifdef HAVE_CURL
-       END OBJ(curl, 0)
-               if (arg) {
-                       int argc;
-                       float interval = 0;
-                       char *uri = (char *) malloc(128 * sizeof(char));
-
-                       argc = sscanf(arg, "%127s %f", uri, &interval);
-                       if (argc == 2) {
-                               obj->data.curl.uri = uri;
-                               obj->data.curl.interval = interval > 0 ? interval * 60 : 15*60;
-                       } else {
-                               NORM_ERR("wrong number of arguments for $curl");
-                       }
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "curl needs arguments: <uri> <interval in minutes>");
-               }
-#endif
-#ifdef RSS
-       END OBJ(rss, 0)
-               if (arg) {
-                       float interval = 0;
-                       int argc, act_par = 0;
-                       unsigned int nrspaces = 0;
-                       char *uri = (char *) malloc(128 * sizeof(char));
-                       char *action = (char *) malloc(64 * sizeof(char));
-
-                       argc = sscanf(arg, "%127s %f %63s %d %u", uri, &interval, action,
-                                       &act_par, &nrspaces);
-                       if (argc >= 3) {
-                               obj->data.rss.uri = uri;
-                               obj->data.rss.interval = interval > 0 ? interval * 60 : 15*60;
-                               obj->data.rss.action = action;
-                               obj->data.rss.act_par = act_par;
-                               obj->data.rss.nrspaces = nrspaces;
-                       } else {
-                               NORM_ERR("wrong number of arguments for $rss");
-                       }
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "rss needs arguments: <uri> <interval in minutes> <action> "
-                                       "[act_par] [spaces in front]");
-               }
-#endif
-#ifdef WEATHER
-       END OBJ(weather, 0)
-               if (arg) {
-                       int argc;
-                       float interval = 0;
-                       char *locID = (char *) malloc(9 * sizeof(char));
-                       char *uri = (char *) malloc(128 * sizeof(char));
-                       char *data_type = (char *) malloc(32 * sizeof(char));
-
-                       argc = sscanf(arg, "%119s %8s %31s %f", uri, locID, data_type, &interval);
-
-                       if (argc >= 3) {
-                               if (process_weather_uri(uri, locID, 0)) {
-                                       free(data_type);
-                                       free(uri);
-                                       free(locID);
-                                       CRIT_ERR(obj, free_at_crash, \
-                                                       "could not recognize the weather uri");
-                               }
-
-                               obj->data.weather.uri = uri;
-                               obj->data.weather.data_type = data_type;
-
-                               /* Limit the data retrieval interval to half hour min */
-                               if (interval < 30) {
-                                       interval = 30;
-                               }
-
-                               /* Convert to seconds */
-                               obj->data.weather.interval = interval * 60;
-                               free(locID);
-
-                               DBGP("weather: fetching %s from %s every %d seconds", \
-                                               data_type, uri, obj->data.weather.interval);
-                       } else {
-                               free(data_type);
-                               free(uri);
-                               free(locID);
-                               CRIT_ERR(obj, free_at_crash, "wrong number of arguments for $weather");
-                       }
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "weather needs arguments: <uri> <locID> <data_type> [interval in minutes]");
-               }
-#endif
-#ifdef XOAP
-       END OBJ(weather_forecast, 0)
-               if (arg) {
-                       int argc;
-                       unsigned int day;
-                       float interval = 0;
-                       char *locID = (char *) malloc(9 * sizeof(char));
-                       char *uri = (char *) malloc(128 * sizeof(char));
-                       char *data_type = (char *) malloc(32 * sizeof(char));
-
-                       argc = sscanf(arg, "%119s %8s %1u %31s %f", uri, locID, &day, data_type, &interval);
-
-                       if (argc >= 4) {
-                               if (process_weather_uri(uri, locID, 1)) {
-                                       free(data_type);
-                                       free(uri);
-                                       free(locID);
-                                       CRIT_ERR(obj, free_at_crash, \
-                                                       "could not recognize the weather forecast uri");
-                               }
-
-                               obj->data.weather_forecast.uri = uri;
-                               obj->data.weather_forecast.data_type = data_type;
-
-                               /* Limit the day between 0 (today) and FORECAST_DAYS */
-                               if (day >= FORECAST_DAYS) {
-                                       day = FORECAST_DAYS-1;
-                               }
-                               obj->data.weather_forecast.day = day;
-
-                               /* Limit the data retrieval interval to 3 hours and an half */
-                               if (interval < 210) {
-                                       interval = 210;
-                               }
-
-                               /* Convert to seconds */
-                               obj->data.weather_forecast.interval = interval * 60;
-                               free(locID);
-
-                               DBGP("weather_forecast: fetching %s for day %d from %s every %d seconds", \
-                                        data_type, day, uri, obj->data.weather_forecast.interval);
-                       } else {
-                               free(data_type);
-                               free(uri);
-                               free(locID);
-                               CRIT_ERR(obj, free_at_crash, "wrong number of arguments for $weather_forecast");
-                       }
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "weather_forecast needs arguments: <uri> <locID> <day> <data_type> [interval in minutes]");
-               }
-#endif
-#ifdef HAVE_LUA
-       END OBJ(lua, 0)
-               if (arg) {
-                       obj->data.s = strndup(arg, text_buffer_size);
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "lua needs arguments: <function name> [function parameters]");
-               }
-       END OBJ(lua_parse, 0)
-               if (arg) {
-                       obj->data.s = strndup(arg, text_buffer_size);
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "lua_parse needs arguments: <function name> [function parameters]");
-               }
-       END OBJ(lua_bar, 0)
-               SIZE_DEFAULTS(bar);
-               if (arg) {
-                       arg = scan_bar(arg, &obj->a, &obj->b);
-                       if(arg) {
-                               obj->data.s = strndup(arg, text_buffer_size);
-                       } else {
-                               CRIT_ERR(obj, free_at_crash, "lua_bar needs arguments: <height>,<width> <function name> [function parameters]");
-                       }
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "lua_bar needs arguments: <height>,<width> <function name> [function parameters]");
-               }
-#ifdef X11
-       END OBJ(lua_graph, 0)
-               SIZE_DEFAULTS(graph);
-               if (arg) {
-                       char *buf = 0;
-                       buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
-                                       &obj->e, &obj->char_a, &obj->char_b);
-                       if (buf) {
-                               obj->data.s = buf;
-                       } else {
-                               CRIT_ERR(obj, free_at_crash, "lua_graph needs arguments: <function name> [height],[width] [gradient colour 1] [gradient colour 2] [scale] [-t] [-l]");
-                       }
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "lua_graph needs arguments: <function name> [height],[width] [gradient colour 1] [gradient colour 2] [scale] [-t] [-l]");
-       }
-       END OBJ(lua_gauge, 0)
-               SIZE_DEFAULTS(gauge);
-               if (arg) {
-                       arg = scan_gauge(arg, &obj->a, &obj->b);
-                       if (arg) {
-                               obj->data.s = strndup(arg, text_buffer_size);
-                       } else {
-                               CRIT_ERR(obj, free_at_crash, "lua_gauge needs arguments: <height>,<width> <function name> [function parameters]");
-                       }
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "lua_gauge needs arguments: <height>,<width> <function name> [function parameters]");
-               }
-#endif /* X11 */
-#endif /* HAVE_LUA */
-#ifdef HDDTEMP
-       END OBJ(hddtemp, 0)
-               if (scan_hddtemp(arg, &obj->data.hddtemp.dev,
-                                &obj->data.hddtemp.addr, &obj->data.hddtemp.port)) {
-                       NORM_ERR("hddtemp needs arguments");
-                       obj->type = OBJ_text;
-                       obj->data.s = strndup("${hddtemp}", text_buffer_size);
-                       obj->data.hddtemp.update_time = 0;
-               } else
-                       obj->data.hddtemp.temp = NULL;
-#endif /* HDDTEMP */
-#ifdef TCP_PORT_MONITOR
-       END OBJ(tcp_portmon, INFO_TCP_PORT_MONITOR)
-               tcp_portmon_init(arg, &obj->data.tcp_port_monitor);
-#endif /* TCP_PORT_MONITOR */
-       END OBJ(entropy_avail, INFO_ENTROPY)
-       END OBJ(entropy_perc, INFO_ENTROPY)
-       END OBJ(entropy_poolsize, INFO_ENTROPY)
-       END OBJ(entropy_bar, INFO_ENTROPY)
-               SIZE_DEFAULTS(bar);
-               scan_bar(arg, &obj->a, &obj->b);
-       END OBJ(include, 0)
-               if(arg) {
-                       struct conftree *leaf = conftree_add(currentconffile, arg);
-                       if(leaf) {
-                               if (load_config_file(arg) == TRUE) {
-                                       obj->sub = malloc(sizeof(struct text_object));
-                                       currentconffile = leaf;
-                                       extract_variable_text_internal(obj->sub, get_global_text());
-                                       currentconffile = leaf->back;
-                               } else {
-                                       NORM_ERR("Can't load configfile '%s'.", arg);
-                               }
-                       } else {
-                               NORM_ERR("You are trying to load '%s' recursively, I'm only going to load it once to prevent an infinite loop.", arg);
-                       }
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "include needs a argument");
-               }
-       END OBJ(blink, 0)
-               if(arg) {
-                       obj->sub = malloc(sizeof(struct text_object));
-                       extract_variable_text_internal(obj->sub, arg);
-               }else{
-                       CRIT_ERR(obj, free_at_crash, "blink needs a argument");
-               }
-       END OBJ(to_bytes, 0)
-               if(arg) {
-                       obj->sub = malloc(sizeof(struct text_object));
-                       extract_variable_text_internal(obj->sub, arg);
-               }else{
-                       CRIT_ERR(obj, free_at_crash, "to_bytes needs a argument");
-               }
-       END OBJ(scroll, 0)
-               int n1 = 0, n2 = 0;
-
-               obj->data.scroll.resetcolor = get_current_text_color();
-               obj->data.scroll.step = 1;
-               if (arg && sscanf(arg, "%u %n", &obj->data.scroll.show, &n1) > 0) {
-                       sscanf(arg + n1, "%u %n", &obj->data.scroll.step, &n2);
-                       if (*(arg + n1 + n2)) {
-                               n1 += n2;
-                       } else {
-                               obj->data.scroll.step = 1;
-                       }
-                       obj->data.scroll.text = malloc(strlen(arg + n1) + obj->data.scroll.show + 1);
-                       for(n2 = 0; (unsigned int) n2 < obj->data.scroll.show; n2++) {
-                               obj->data.scroll.text[n2] = ' ';
-                       }
-                       obj->data.scroll.text[n2] = 0;
-                       strcat(obj->data.scroll.text, arg + n1);
-                       obj->data.scroll.start = 0;
-                       obj->sub = malloc(sizeof(struct text_object));
-                       extract_variable_text_internal(obj->sub,
-                                       obj->data.scroll.text);
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "scroll needs arguments: <length> [<step>] <text>");
-               }
-       END OBJ(combine, 0)
-               if(arg) {
-                       unsigned int i,j;
-                       unsigned int indenting = 0;     //vars can be used as args for other vars
-                       int startvar[2];
-                       int endvar[2];
-                       startvar[0] = endvar[0] = startvar[1] = endvar[1] = -1;
-                       j=0;
-                       for (i=0; arg[i] != 0 && j < 2; i++) {
-                               if(startvar[j] == -1) {
-                                       if(arg[i] == '$') {
-                                               startvar[j] = i;
-                                       }
-                               }else if(endvar[j] == -1) {
-                                       if(arg[i] == '{') {
-                                               indenting++;
-                                       }else if(arg[i] == '}') {
-                                               indenting--;
-                                       }
-                                       if (indenting == 0 && arg[i+1] < 48) {  //<48 has 0, $, and the most used chars not used in varnames but not { or }
-                                               endvar[j]=i+1;
-                                               j++;
-                                       }
-                               }
-                       }
-                       if(startvar[0] >= 0 && endvar[0] >= 0 && startvar[1] >= 0 && endvar[1] >= 0) {
-                               obj->data.combine.left = malloc(endvar[0]-startvar[0] + 1);
-                               obj->data.combine.seperation = malloc(startvar[1] - endvar[0] + 1);
-                               obj->data.combine.right= malloc(endvar[1]-startvar[1] + 1);
-
-                               strncpy(obj->data.combine.left, arg + startvar[0], endvar[0] - startvar[0]);
-                               obj->data.combine.left[endvar[0] - startvar[0]] = 0;
-
-                               strncpy(obj->data.combine.seperation, arg + endvar[0], startvar[1] - endvar[0]);
-                               obj->data.combine.seperation[startvar[1] - endvar[0]] = 0;
-
-                               strncpy(obj->data.combine.right, arg + startvar[1], endvar[1] - startvar[1]);
-                               obj->data.combine.right[endvar[1] - startvar[1]] = 0;
-
-                               obj->sub = malloc(sizeof(struct text_object));
-                               extract_variable_text_internal(obj->sub, obj->data.combine.left);
-                               obj->sub->sub = malloc(sizeof(struct text_object));
-                               extract_variable_text_internal(obj->sub->sub, obj->data.combine.right);
-                       } else {
-                               CRIT_ERR(obj, free_at_crash, "combine needs arguments: <text1> <text2>");
-                       }
-               } else {
-                       CRIT_ERR(obj, free_at_crash, "combine needs arguments: <text1> <text2>");
-               }
-#ifdef NVIDIA
-       END OBJ(nvidia, 0)
-               if (!arg) {
-                       CRIT_ERR(obj, free_at_crash, "nvidia needs an argument\n");
-               } else if (set_nvidia_type(&obj->data.nvidia, arg)) {
-                       CRIT_ERR(obj, free_at_crash, "nvidia: invalid argument"
-                                " specified: '%s'\n", arg);
-               }
-#endif /* NVIDIA */
-#ifdef APCUPSD
-               init_apcupsd();
-               END OBJ(apcupsd, INFO_APCUPSD)
-                       if (arg) {
-                               char host[64];
-                               int port;
-                               if (sscanf(arg, "%63s %d", host, &port) != 2) {
-                                       CRIT_ERR(obj, free_at_crash, "apcupsd needs arguments: <host> <port>");
-                               } else {
-                                       info.apcupsd.port = htons(port);
-                                       strncpy(info.apcupsd.host, host, sizeof(info.apcupsd.host));
-                               }
-                       } else {
-                               CRIT_ERR(obj, free_at_crash, "apcupsd needs arguments: <host> <port>");
-                       }
-                       END OBJ(apcupsd_name, INFO_APCUPSD)
-                       END OBJ(apcupsd_model, INFO_APCUPSD)
-                       END OBJ(apcupsd_upsmode, INFO_APCUPSD)
-                       END OBJ(apcupsd_cable, INFO_APCUPSD)
-                       END OBJ(apcupsd_status, INFO_APCUPSD)
-                       END OBJ(apcupsd_linev, INFO_APCUPSD)
-                       END OBJ(apcupsd_load, INFO_APCUPSD)
-                       END OBJ(apcupsd_loadbar, INFO_APCUPSD)
-                               SIZE_DEFAULTS(bar);
-                               scan_bar(arg, &obj->a, &obj->b);
-#ifdef X11
-                       END OBJ(apcupsd_loadgraph, INFO_APCUPSD)
-                               char* buf = 0;
-                               SIZE_DEFAULTS(graph);
-                               buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
-                                               &obj->e, &obj->char_a, &obj->char_b);
-                               if (buf) free(buf);
-                       END OBJ(apcupsd_loadgauge, INFO_APCUPSD)
-                               SIZE_DEFAULTS(gauge);
-                               scan_gauge(arg, &obj->a, &obj->b);
-#endif /* X11 */
-                       END OBJ(apcupsd_charge, INFO_APCUPSD)
-                       END OBJ(apcupsd_timeleft, INFO_APCUPSD)
-                       END OBJ(apcupsd_temp, INFO_APCUPSD)
-                       END OBJ(apcupsd_lastxfer, INFO_APCUPSD)
-#endif /* APCUPSD */
-       END {
-               char buf[256];
-
-               NORM_ERR("unknown variable %s", s);
-               obj->type = OBJ_text;
-               snprintf(buf, 256, "${%s}", s);
-               obj->data.s = strndup(buf, text_buffer_size);
-       }
-#undef OBJ
-
-       return obj;
-}
-
-/* backslash_escape - do the actual substitution task for template objects
- *
- * The field templates is used for substituting the \N occurences. Set it to
- * NULL to leave them as they are.
- */
-static char *backslash_escape(const char *src, char **templates, unsigned int template_count)
-{
-       char *src_dup;
-       const char *p;
-       unsigned int dup_idx = 0, dup_len;
-
-       dup_len = strlen(src) + 1;
-       src_dup = malloc(dup_len * sizeof(char));
-
-       p = src;
-       while (*p) {
-               switch (*p) {
-               case '\\':
-                       if (!*(p + 1))
-                               break;
-                       if (*(p + 1) == '\\') {
-                               src_dup[dup_idx++] = '\\';
-                               p++;
-                       } else if (*(p + 1) == ' ') {
-                               src_dup[dup_idx++] = ' ';
-                               p++;
-                       } else if (*(p + 1) == 'n') {
-                               src_dup[dup_idx++] = '\n';
-                               p++;
-                       } else if (templates) {
-                               unsigned int tmpl_num;
-                               int digits;
-                               if ((sscanf(p + 1, "%u%n", &tmpl_num, &digits) <= 0) ||
-                                   (tmpl_num > template_count))
-                                       break;
-                               dup_len += strlen(templates[tmpl_num - 1]);
-                               src_dup = realloc(src_dup, dup_len * sizeof(char));
-                               sprintf(src_dup + dup_idx, "%s", templates[tmpl_num - 1]);
-                               dup_idx += strlen(templates[tmpl_num - 1]);
-                               p += digits;
-                       }
-                       break;
-               default:
-                       src_dup[dup_idx++] = *p;
-                       break;
-               }
-               p++;
-       }
-       src_dup[dup_idx] = '\0';
-       src_dup = realloc(src_dup, (strlen(src_dup) + 1) * sizeof(char));
-       return src_dup;
-}
-
-/* handle_template_object - core logic of the template object
- *
- * use config variables like this:
- * template1 = "$\1\2"
- * template2 = "\1: ${fs_bar 4,100 \2} ${fs_used \2} / ${fs_size \2}"
- *
- * and use them like this:
- * ${template1 node name}
- * ${template2 root /}
- * ${template2 cdrom /mnt/cdrom}
- */
-static char *handle_template(const char *tmpl, const char *args)
-{
-       char *args_dup = NULL;
-       char *p, *p_old;
-       char **argsp = NULL;
-       unsigned int argcnt = 0, template_idx, i;
-       char *eval_text;
-
-       if ((sscanf(tmpl, "template%u", &template_idx) != 1) ||
-           (template_idx >= MAX_TEMPLATES))
-               return NULL;
-
-       if(args) {
-               args_dup = strdup(args);
-               p = args_dup;
-               while (*p) {
-                       while (*p && (*p == ' ' && (p == args_dup || *(p - 1) != '\\')))
-                               p++;
-                       if (p > args_dup && *(p - 1) == '\\')
-                               p--;
-                       p_old = p;
-                       while (*p && (*p != ' ' || (p > args_dup && *(p - 1) == '\\')))
-                               p++;
-                       if (*p) {
-                               (*p) = '\0';
-                               p++;
-                       }
-                       argsp = realloc(argsp, ++argcnt * sizeof(char *));
-                       argsp[argcnt - 1] = p_old;
-               }
-               for (i = 0; i < argcnt; i++) {
-                       char *tmp;
-                       tmp = backslash_escape(argsp[i], NULL, 0);
-                       DBGP2("%s: substituted arg '%s' to '%s'", tmpl, argsp[i], tmp);
-                       argsp[i] = tmp;
-               }
-       }
-
-       eval_text = backslash_escape(get_templates()[template_idx], argsp, argcnt);
-       DBGP("substituted %s, output is '%s'", tmpl, eval_text);
-       free(args_dup);
-       for (i = 0; i < argcnt; i++)
-               free(argsp[i]);
-       free(argsp);
-       return eval_text;
-}
-
-static char *find_and_replace_templates(const char *inbuf)
-{
-       char *outbuf, *indup, *p, *o, *templ, *args, *tmpl_out;
-       int stack, outlen;
-
-       outlen = strlen(inbuf) + 1;
-       o = outbuf = calloc(outlen, sizeof(char));
-       memset(outbuf, 0, outlen * sizeof(char));
-
-       p = indup = strdup(inbuf);
-       while (*p) {
-               while (*p && *p != '$')
-                       *(o++) = *(p++);
-
-               if (!(*p))
-                       break;
-
-               if (strncmp(p, "$template", 9) && strncmp(p, "${template", 10)) {
-                       *(o++) = *(p++);
-                       continue;
-               }
-
-               if (*(p + 1) == '{') {
-                       p += 2;
-                       templ = p;
-                       while (*p && !isspace(*p) && *p != '{' && *p != '}')
-                               p++;
-                       if (*p == '}')
-                               args = NULL;
-                       else
-                               args = p;
-
-                       stack = 1;
-                       while (*p && stack > 0) {
-                               if (*p == '{')
-                                       stack++;
-                               else if (*p == '}')
-                                       stack--;
-                               p++;
-                       }
-                       if (stack == 0) {
-                               // stack is empty. that means the previous char was }, so we zero it
-                               *(p - 1) = '\0';
-                       } else {
-                               // we ran into the end of string without finding a closing }, bark
-                               CRIT_ERR(NULL, NULL, "cannot find a closing '}' in template expansion");
-                       }
-               } else {
-                       templ = p + 1;
-                       while (*p && !isspace(*p))
-                               p++;
-                       args = NULL;
-               }
-               tmpl_out = handle_template(templ, args);
-               if (tmpl_out) {
-                       outlen += strlen(tmpl_out);
-                       *o = '\0';
-                       outbuf = realloc(outbuf, outlen * sizeof(char));
-                       strcat (outbuf, tmpl_out);
-                       free(tmpl_out);
-                       o = outbuf + strlen(outbuf);
-               } else {
-                       NORM_ERR("failed to handle template '%s' with args '%s'", templ, args);
-               }
-       }
-       *o = '\0';
-       outbuf = realloc(outbuf, (strlen(outbuf) + 1) * sizeof(char));
-       free(indup);
-       return outbuf;
-}
-
-static int text_contains_templates(const char *text)
-{
-       if (strcasestr(text, "${template") != NULL)
-               return 1;
-       if (strcasestr(text, "$template") != NULL)
-               return 1;
-       return 0;
-}
-
-/*
- * - assumes that *string is '#'
- * - removes the part from '#' to the end of line ('\n' or '\0')
- * - it removes the '\n'
- * - copies the last char into 'char *last' argument, which should be a pointer
- *   to a char rather than a string.
- */
-static size_t remove_comment(char *string, char *last)
-{
-       char *end = string;
-       while (*end != '\0' && *end != '\n') {
-               ++end;
-       }
-       if (last) *last = *end;
-       if (*end == '\n') end++;
-       strfold(string, end - string);
-       return end - string;
-}
-
-size_t remove_comments(char *string)
-{
-       char *curplace;
-       size_t folded = 0;
-       for (curplace = string; *curplace != 0; curplace++) {
-               if (*curplace == '\\' && *(curplace + 1) == '#') {
-                       // strcpy can't be used for overlapping strings
-                       strfold(curplace, 1);
-                       folded += 1;
-               } else if (*curplace == '#') {
-                       folded += remove_comment(curplace, 0);
-               }
-       }
-       return folded;
-}
-
-int extract_variable_text_internal(struct text_object *retval, const char *const_p)
-{
-       struct text_object *obj;
-       char *p, *s, *orig_p;
-       long line;
-       void *ifblock_opaque = NULL;
-       char *tmp_p;
-       char *arg = 0;
-       size_t len = 0;
-
-       p = strndup(const_p, max_user_text - 1);
-       while (text_contains_templates(p)) {
-               char *tmp;
-               tmp = find_and_replace_templates(p);
-               free(p);
-               p = tmp;
-       }
-       s = orig_p = p;
-
-       if (strcmp(p, const_p)) {
-               DBGP("replaced all templates in text: input is\n'%s'\noutput is\n'%s'", const_p, p);
-       } else {
-               DBGP("no templates to replace");
-       }
-
-       memset(retval, 0, sizeof(struct text_object));
-
-       line = global_text_lines;
-
-       while (*p) {
-               if (*p == '\n') {
-                       line++;
-               }
-               if (*p == '$') {
-                       *p = '\0';
-                       obj = create_plain_text(s);
-                       if (obj != NULL) {
-                               append_object(retval, obj);
-                       }
-                       *p = '$';
-                       p++;
-                       s = p;
-
-                       if (*p != '$') {
-                               char buf[256];
-                               const char *var;
-
-                               /* variable is either $foo or ${foo} */
-                               if (*p == '{') {
-                                       unsigned int brl = 1, brr = 0;
-
-                                       p++;
-                                       s = p;
-                                       while (*p && brl != brr) {
-                                               if (*p == '{') {
-                                                       brl++;
-                                               }
-                                               if (*p == '}') {
-                                                       brr++;
-                                               }
-                                               p++;
-                                       }
-                                       p--;
-                               } else {
-                                       s = p;
-                                       if (*p == '#') {
-                                               p++;
-                                       }
-                                       while (*p && (isalnum((int) *p) || *p == '_')) {
-                                               p++;
-                                       }
-                               }
-
-                               /* copy variable to buffer */
-                               len = (p - s > 255) ? 255 : (p - s);
-                               strncpy(buf, s, len);
-                               buf[len] = '\0';
-
-                               if (*p == '}') {
-                                       p++;
-                               }
-                               s = p;
-
-                               /* search for variable in environment */
-
-                               var = getenv(buf);
-                               if (var) {
-                                       obj = create_plain_text(var);
-                                       if (obj) {
-                                               append_object(retval, obj);
-                                       }
-                                       continue;
-                               }
-
-                               /* if variable wasn't found in environment, use some special */
-
-                               arg = 0;
-
-                               /* split arg */
-                               if (strchr(buf, ' ')) {
-                                       arg = strchr(buf, ' ');
-                                       *arg = '\0';
-                                       arg++;
-                                       while (isspace((int) *arg)) {
-                                               arg++;
-                                       }
-                                       if (!*arg) {
-                                               arg = 0;
-                                       }
-                               }
-
-                               /* lowercase variable name */
-                               tmp_p = buf;
-                               while (*tmp_p) {
-                                       *tmp_p = tolower(*tmp_p);
-                                       tmp_p++;
-                               }
-
-                               obj = construct_text_object(buf, arg,
-                                               line, &ifblock_opaque, orig_p);
-                               if (obj != NULL) {
-                                       append_object(retval, obj);
-                               }
-                               continue;
-                       } else {
-                               obj = create_plain_text("$");
-                               s = p + 1;
-                               if (obj != NULL) {
-                                       append_object(retval, obj);
-                               }
-                       }
-               } else if (*p == '\\' && *(p+1) == '#') {
-                       strfold(p, 1);
-               } else if (*p == '#') {
-                       char c;
-                       if (remove_comment(p, &c) && p > orig_p && c == '\n') {
-                               /* if remove_comment removed a newline, we need to 'back up' with p */
-                               p--;
-                       }
-               }
-               p++;
-       }
-       obj = create_plain_text(s);
-       if (obj != NULL) {
-               append_object(retval, obj);
-       }
-
-       if (!ifblock_stack_empty(&ifblock_opaque)) {
-               NORM_ERR("one or more $endif's are missing");
-       }
-
-       free(orig_p);
-       return 0;
-}
-
diff --git a/src/obj_create.h b/src/obj_create.h
deleted file mode 100644 (file)
index c1ac6e8..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
- *
- * Conky, a system monitor, based on torsmo
- *
- * Any original torsmo code is licensed under the BSD license
- *
- * All code written since the fork of torsmo is licensed under the GPL
- *
- * Please see COPYING for details
- *
- * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
- * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
- *     (see AUTHORS)
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- *
- * vim: ts=4 sw=4 noet ai cindent syntax=c
- *
- */
-
-#ifndef _CONKY_OBJ_CREATE_H_
-#define _CONKY_OBJ_CREATE_H_
-
-#include "conky.h"
-
-struct text_object *construct_text_object(const char *s, const char *arg, long
-               line, void **ifblock_opaque, void *free_at_crash);
-
-size_t remove_comments(char *string);
-
-int extract_variable_text_internal(struct text_object *retval, const char *const_p);
-
-void free_text_objects(struct text_object *root, int internal);
-
-#ifdef X11
-void scan_mixer_bar(const char *arg, int *a, int *w, int *h);
-#endif /* X11 */
-
-#ifdef HAVE_ICONV
-void set_iconv_converting(char i);
-void set_iconv_selected(long i);
-void iconv_convert(size_t a, char *buff_in, char *p, size_t p_max_size);
-#endif /* HAVE_ICONV */
-
-#endif /* _CONKY_OBJ_CREATE_H_ */
diff --git a/src/obj_destroy.c b/src/obj_destroy.c
deleted file mode 100644 (file)
index 6a0d442..0000000
+++ /dev/null
@@ -1,479 +0,0 @@
-/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
- *
- * Conky, a system monitor, based on torsmo
- *
- * Any original torsmo code is licensed under the BSD license
- *
- * All code written since the fork of torsmo is licensed under the GPL
- *
- * Please see COPYING for details
- *
- * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
- * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
- *     (see AUTHORS)
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- *
- * vim: ts=4 sw=4 noet ai cindent syntax=c
- *
- */
-
-/* local headers */
-#include "obj_destroy.h"
-
-/*
- * Frees the list of text objects root points to.  When internal = 1, it won't
- * free global objects.
- */
-void free_text_objects(struct text_object *root, int internal)
-{
-       struct text_object *obj;
-
-       if (!root->prev) {
-               return;
-       }
-
-#define data obj->data
-       for (obj = root->prev; obj; obj = root->prev) {
-               root->prev = obj->prev;
-               switch (obj->type) {
-#ifndef __OpenBSD__
-                       case OBJ_acpitemp:
-                               close(data.i);
-                               break;
-#endif /* !__OpenBSD__ */
-#ifdef __linux__
-                       case OBJ_i2c:
-                       case OBJ_platform:
-                       case OBJ_hwmon:
-                               close(data.sysfs.fd);
-                               break;
-#endif /* __linux__ */
-                       case OBJ_read_tcp:
-                               free(data.read_tcp.host);
-                               break;
-                       case OBJ_time:
-                       case OBJ_utime:
-                               free(data.s);
-                               break;
-                       case OBJ_tztime:
-                               free(data.tztime.tz);
-                               free(data.tztime.fmt);
-                               break;
-                       case OBJ_mboxscan:
-                               free(data.mboxscan.args);
-                               free(data.mboxscan.output);
-                               break;
-                       case OBJ_mails:
-                       case OBJ_new_mails:
-                       case OBJ_seen_mails:
-                       case OBJ_unseen_mails:
-                       case OBJ_flagged_mails:
-                       case OBJ_unflagged_mails:
-                       case OBJ_forwarded_mails:
-                       case OBJ_unforwarded_mails:
-                       case OBJ_replied_mails:
-                       case OBJ_unreplied_mails:
-                       case OBJ_draft_mails:
-                       case OBJ_trashed_mails:
-                               free(data.local_mail.mbox);
-                               break;
-                       case OBJ_imap_unseen:
-                               if (!obj->char_b) {
-                                       free(data.mail);
-                               }
-                               break;
-                       case OBJ_imap_messages:
-                               if (!obj->char_b) {
-                                       free(data.mail);
-                               }
-                               break;
-                       case OBJ_pop3_unseen:
-                               if (!obj->char_b) {
-                                       free(data.mail);
-                               }
-                               break;
-                       case OBJ_pop3_used:
-                               if (!obj->char_b) {
-                                       free(data.mail);
-                               }
-                               break;
-                       case OBJ_if_empty:
-                       case OBJ_if_match:
-                               free_text_objects(obj->sub, 1);
-                               free(obj->sub);
-                               /* fall through */
-                       case OBJ_if_existing:
-                       case OBJ_if_mounted:
-                       case OBJ_if_running:
-                               free(data.ifblock.s);
-                               free(data.ifblock.str);
-                               break;
-                       case OBJ_head:
-                       case OBJ_tail:
-                               free(data.headtail.logfile);
-                               if(data.headtail.buffer) {
-                                       free(data.headtail.buffer);
-                               }
-                               break;
-                       case OBJ_text:
-                       case OBJ_font:
-                       case OBJ_image:
-                       case OBJ_eval:
-                       case OBJ_exec:
-                       case OBJ_execbar:
-#ifdef X11
-                       case OBJ_execgauge:
-                       case OBJ_execgraph:
-#endif
-                       case OBJ_execp:
-                               free(data.s);
-                               break;
-#ifdef HAVE_ICONV
-                       case OBJ_iconv_start:
-                               free_iconv();
-                               break;
-#endif
-#ifdef __linux__
-                       case OBJ_disk_protect:
-                               free(data.s);
-                               break;
-                       case OBJ_if_gw:
-                               free(data.ifblock.s);
-                               free(data.ifblock.str);
-                       case OBJ_gw_iface:
-                       case OBJ_gw_ip:
-                               if (info.gw_info.iface) {
-                                       free(info.gw_info.iface);
-                                       info.gw_info.iface = 0;
-                               }
-                               if (info.gw_info.ip) {
-                                       free(info.gw_info.ip);
-                                       info.gw_info.ip = 0;
-                               }
-                               break;
-                       case OBJ_ioscheduler:
-                               if(data.s)
-                                       free(data.s);
-                               break;
-#endif
-#if (defined(__FreeBSD__) || defined(__linux__))
-                       case OBJ_if_up:
-                               free(data.ifblock.s);
-                               free(data.ifblock.str);
-                               break;
-#endif
-#ifdef XMMS2
-                       case OBJ_xmms2_artist:
-                               if (info.xmms2.artist) {
-                                       free(info.xmms2.artist);
-                                       info.xmms2.artist = 0;
-                               }
-                               break;
-                       case OBJ_xmms2_album:
-                               if (info.xmms2.album) {
-                                       free(info.xmms2.album);
-                                       info.xmms2.album = 0;
-                               }
-                               break;
-                       case OBJ_xmms2_title:
-                               if (info.xmms2.title) {
-                                       free(info.xmms2.title);
-                                       info.xmms2.title = 0;
-                               }
-                               break;
-                       case OBJ_xmms2_genre:
-                               if (info.xmms2.genre) {
-                                       free(info.xmms2.genre);
-                                       info.xmms2.genre = 0;
-                               }
-                               break;
-                       case OBJ_xmms2_comment:
-                               if (info.xmms2.comment) {
-                                       free(info.xmms2.comment);
-                                       info.xmms2.comment = 0;
-                               }
-                               break;
-                       case OBJ_xmms2_url:
-                               if (info.xmms2.url) {
-                                       free(info.xmms2.url);
-                                       info.xmms2.url = 0;
-                               }
-                               break;
-                       case OBJ_xmms2_date:
-                               if (info.xmms2.date) {
-                                       free(info.xmms2.date);
-                                       info.xmms2.date = 0;
-                               }
-                               break;
-                       case OBJ_xmms2_status:
-                               if (info.xmms2.status) {
-                                       free(info.xmms2.status);
-                                       info.xmms2.status = 0;
-                               }
-                               break;
-                       case OBJ_xmms2_playlist:
-                               if (info.xmms2.playlist) {
-                                       free(info.xmms2.playlist);
-                                       info.xmms2.playlist = 0;
-                               }
-                               break;
-                       case OBJ_xmms2_smart:
-                               if (info.xmms2.artist) {
-                                       free(info.xmms2.artist);
-                                       info.xmms2.artist = 0;
-                               }
-                               if (info.xmms2.title) {
-                                       free(info.xmms2.title);
-                                       info.xmms2.title = 0;
-                               }
-                               if (info.xmms2.url) {
-                                       free(info.xmms2.url);
-                                       info.xmms2.url = 0;
-                               }
-                               break;
-#endif
-#ifdef BMPX
-                       case OBJ_bmpx_title:
-                       case OBJ_bmpx_artist:
-                       case OBJ_bmpx_album:
-                       case OBJ_bmpx_track:
-                       case OBJ_bmpx_uri:
-                       case OBJ_bmpx_bitrate:
-                               break;
-#endif
-#ifdef EVE
-                       case OBJ_eve:
-                               break;
-#endif
-#ifdef HAVE_CURL
-                       case OBJ_curl:
-                               free(data.curl.uri);
-                               break;
-#endif
-#ifdef RSS
-                       case OBJ_rss:
-                               free(data.rss.uri);
-                               free(data.rss.action);
-                               break;
-#endif
-#ifdef WEATHER
-                       case OBJ_weather:
-                               free(data.weather.uri);
-                               free(data.weather.data_type);
-                               break;
-#endif
-#ifdef XOAP
-                       case OBJ_weather_forecast:
-                               free(data.weather_forecast.uri);
-                               free(data.weather_forecast.data_type);
-                               break;
-#endif
-#ifdef HAVE_LUA
-                       case OBJ_lua:
-                       case OBJ_lua_parse:
-                       case OBJ_lua_bar:
-#ifdef X11
-                       case OBJ_lua_graph:
-                       case OBJ_lua_gauge:
-#endif /* X11 */
-                               free(data.s);
-                               break;
-#endif /* HAVE_LUA */
-                       case OBJ_pre_exec:
-                               break;
-#ifndef __OpenBSD__
-                       case OBJ_battery:
-                               free(data.s);
-                               break;
-                       case OBJ_battery_short:
-                               free(data.s);
-                               break;
-                       case OBJ_battery_time:
-                               free(data.s);
-                               break;
-#endif /* !__OpenBSD__ */
-                       case OBJ_execpi:
-                       case OBJ_execi:
-                       case OBJ_execibar:
-#ifdef X11
-                       case OBJ_execigraph:
-                       case OBJ_execigauge:
-#endif /* X11 */
-                               free(data.execi.cmd);
-                               free(data.execi.buffer);
-                               break;
-                       case OBJ_texeci:
-                               if (data.texeci.p_timed_thread) timed_thread_destroy(data.texeci.p_timed_thread, &data.texeci.p_timed_thread);
-                               free(data.texeci.cmd);
-                               free(data.texeci.buffer);
-                               break;
-                       case OBJ_nameserver:
-                               free_dns_data();
-                               break;
-                       case OBJ_top:
-                       case OBJ_top_mem:
-                       case OBJ_top_time:
-#ifdef IOSTATS
-                       case OBJ_top_io:
-#endif
-                               if (info.first_process && !internal) {
-                                       free_all_processes();
-                                       info.first_process = NULL;
-                               }
-                               if (data.top.s) free(data.top.s);
-                               break;
-#ifdef HDDTEMP
-                       case OBJ_hddtemp:
-                               free(data.hddtemp.dev);
-                               free(data.hddtemp.addr);
-                               if (data.hddtemp.temp)
-                                       free(data.hddtemp.temp);
-                               break;
-#endif /* HDDTEMP */
-                       case OBJ_entropy_avail:
-                       case OBJ_entropy_perc:
-                       case OBJ_entropy_poolsize:
-                       case OBJ_entropy_bar:
-                               break;
-                       case OBJ_user_names:
-                               if (info.users.names) {
-                                       free(info.users.names);
-                                       info.users.names = 0;
-                               }
-                               break;
-                       case OBJ_user_terms:
-                               if (info.users.terms) {
-                                       free(info.users.terms);
-                                       info.users.terms = 0;
-                               }
-                               break;
-                       case OBJ_user_times:
-                               if (info.users.times) {
-                                       free(info.users.times);
-                                       info.users.times = 0;
-                               }
-                               break;
-#ifdef IBM
-                       case OBJ_smapi:
-                       case OBJ_smapi_bat_perc:
-                       case OBJ_smapi_bat_temp:
-                       case OBJ_smapi_bat_power:
-                               free(data.s);
-                               break;
-                       case OBJ_if_smapi_bat_installed:
-                               free(data.ifblock.s);
-                               free(data.ifblock.str);
-                               break;
-#endif /* IBM */
-#ifdef NVIDIA
-                       case OBJ_nvidia:
-                               break;
-#endif /* NVIDIA */
-#ifdef MPD
-                       case OBJ_mpd_title:
-                       case OBJ_mpd_artist:
-                       case OBJ_mpd_album:
-                       case OBJ_mpd_random:
-                       case OBJ_mpd_repeat:
-                       case OBJ_mpd_vol:
-                       case OBJ_mpd_bitrate:
-                       case OBJ_mpd_status:
-                       case OBJ_mpd_bar:
-                       case OBJ_mpd_elapsed:
-                       case OBJ_mpd_length:
-                       case OBJ_mpd_track:
-                       case OBJ_mpd_name:
-                       case OBJ_mpd_file:
-                       case OBJ_mpd_percent:
-                       case OBJ_mpd_smart:
-                       case OBJ_if_mpd_playing:
-                               free_mpd();
-                               break;
-#endif /* MPD */
-#ifdef MOC
-                       case OBJ_moc_state:
-                       case OBJ_moc_file:
-                       case OBJ_moc_title:
-                       case OBJ_moc_artist:
-                       case OBJ_moc_song:
-                       case OBJ_moc_album:
-                       case OBJ_moc_totaltime:
-                       case OBJ_moc_timeleft:
-                       case OBJ_moc_curtime:
-                       case OBJ_moc_bitrate:
-                       case OBJ_moc_rate:
-                               free_moc();
-                               break;
-#endif /* MOC */
-                       case OBJ_include:
-                       case OBJ_blink:
-                       case OBJ_to_bytes:
-                               if(obj->sub) {
-                                       free_text_objects(obj->sub, 1);
-                                       free(obj->sub);
-                               }
-                               break;
-                       case OBJ_scroll:
-                               free(data.scroll.text);
-                               free_text_objects(obj->sub, 1);
-                               free(obj->sub);
-                               break;
-                       case OBJ_combine:
-                               free(data.combine.left);
-                               free(data.combine.seperation);
-                               free(data.combine.right);
-                               free_text_objects(obj->sub, 1);
-                               free(obj->sub);
-                               break;
-#ifdef APCUPSD
-                       case OBJ_apcupsd:
-                       case OBJ_apcupsd_name:
-                       case OBJ_apcupsd_model:
-                       case OBJ_apcupsd_upsmode:
-                       case OBJ_apcupsd_cable:
-                       case OBJ_apcupsd_status:
-                       case OBJ_apcupsd_linev:
-                       case OBJ_apcupsd_load:
-                       case OBJ_apcupsd_loadbar:
-#ifdef X11
-                       case OBJ_apcupsd_loadgraph:
-                       case OBJ_apcupsd_loadgauge:
-#endif /* X11 */
-                       case OBJ_apcupsd_charge:
-                       case OBJ_apcupsd_timeleft:
-                       case OBJ_apcupsd_temp:
-                       case OBJ_apcupsd_lastxfer:
-                               break;
-#endif /* APCUPSD */
-#ifdef X11
-                       case OBJ_desktop:
-                       case OBJ_desktop_number:
-                       case OBJ_desktop_name:
-                               if(info.x11.desktop.name) {
-                                 free(info.x11.desktop.name);
-                                 info.x11.desktop.name = NULL;
-                               }
-                               if(info.x11.desktop.all_names) {
-                                 free(info.x11.desktop.all_names);
-                                 info.x11.desktop.all_names = NULL;
-                               }
-                               break;
-#endif /* X11 */
-               }
-               free(obj);
-       }
-#undef data
-}
-
diff --git a/src/obj_destroy.h b/src/obj_destroy.h
deleted file mode 100644 (file)
index 7ea8e6d..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
- *
- * Conky, a system monitor, based on torsmo
- *
- * Any original torsmo code is licensed under the BSD license
- *
- * All code written since the fork of torsmo is licensed under the GPL
- *
- * Please see COPYING for details
- *
- * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
- * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
- *     (see AUTHORS)
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- *
- * vim: ts=4 sw=4 noet ai cindent syntax=c
- *
- */
-
-#ifndef _CONKY_OBJ_DESTROY_H_
-#define _CONKY_OBJ_DESTROY_H_
-
-#include "conky.h"
-#include "text_object.h"
-
-void free_text_objects(struct text_object *root, int internal);
-
-#endif /* _CONKY_OBJ_DESTROY_H_ */
diff --git a/src/obj_display.c b/src/obj_display.c
deleted file mode 100644 (file)
index adeb0c7..0000000
+++ /dev/null
@@ -1,2577 +0,0 @@
-/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
- *
- * Conky, a system monitor, based on torsmo
- *
- * Any original torsmo code is licensed under the BSD license
- *
- * All code written since the fork of torsmo is licensed under the GPL
- *
- * Please see COPYING for details
- *
- * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
- * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
- *     (see AUTHORS)
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- *
- * vim: ts=4 sw=4 noet ai cindent syntax=c
- *
- */
-
-/* local headers */
-#include "obj_display.h"
-
-//remove backspaced chars, example: "dog^H^H^Hcat" becomes "cat"
-//string has to end with \0 and it's length should fit in a int
-#define BACKSPACE 8
-void remove_deleted_chars(char *string){
-       int i = 0;
-       while(string[i] != 0){
-               if(string[i] == BACKSPACE){
-                       if(i != 0){
-                               strcpy( &(string[i-1]), &(string[i+1]) );
-                               i--;
-                       }else strcpy( &(string[i]), &(string[i+1]) ); //necessary for ^H's at the start of a string
-               }else i++;
-       }
-}
-
-static inline void format_media_player_time(char *buf, const int size,
-               int seconds)
-{
-       int days, hours, minutes;
-
-       days = seconds / (24 * 60 * 60);
-       seconds %= (24 * 60 * 60);
-       hours = seconds / (60 * 60);
-       seconds %= (60 * 60);
-       minutes = seconds / 60;
-       seconds %= 60;
-
-       if (days > 0) {
-               snprintf(buf, size, "%i days %i:%02i:%02i", days,
-                               hours, minutes, seconds);
-       } else if (hours > 0) {
-               snprintf(buf, size, "%i:%02i:%02i", hours, minutes,
-                               seconds);
-       } else {
-               snprintf(buf, size, "%i:%02i", minutes, seconds);
-       }
-}
-
-static inline double get_barnum(char *buf)
-{
-       char *c = buf;
-       double barnum;
-
-       while (*c) {
-               if (*c == '\001') {
-                       *c = ' ';
-               }
-               c++;
-       }
-
-       if (sscanf(buf, "%lf", &barnum) == 0) {
-               NORM_ERR("reading exec value failed (perhaps it's not the "
-                               "correct format?)");
-               return -1;
-       }
-       if (barnum > 100.0 || barnum < 0.0) {
-               NORM_ERR("your exec value is not between 0 and 100, "
-                               "therefore it will be ignored");
-               return -1;
-       }
-       return barnum;
-}
-
-char *format_time(unsigned long timeval, const int width)
-{
-       char buf[10];
-       unsigned long nt;       // narrow time, for speed on 32-bit
-       unsigned cc;            // centiseconds
-       unsigned nn;            // multi-purpose whatever
-
-       nt = timeval;
-       cc = nt % 100;          // centiseconds past second
-       nt /= 100;                      // total seconds
-       nn = nt % 60;           // seconds past the minute
-       nt /= 60;                       // total minutes
-       if (width >= snprintf(buf, sizeof buf, "%lu:%02u.%02u",
-                               nt, nn, cc)) {
-               return strndup(buf, text_buffer_size);
-       }
-       if (width >= snprintf(buf, sizeof buf, "%lu:%02u", nt, nn)) {
-               return strndup(buf, text_buffer_size);
-       }
-       nn = nt % 60;           // minutes past the hour
-       nt /= 60;                       // total hours
-       if (width >= snprintf(buf, sizeof buf, "%lu,%02u", nt, nn)) {
-               return strndup(buf, text_buffer_size);
-       }
-       nn = nt;                        // now also hours
-       if (width >= snprintf(buf, sizeof buf, "%uh", nn)) {
-               return strndup(buf, text_buffer_size);
-       }
-       nn /= 24;                       // now days
-       if (width >= snprintf(buf, sizeof buf, "%ud", nn)) {
-               return strndup(buf, text_buffer_size);
-       }
-       nn /= 7;                        // now weeks
-       if (width >= snprintf(buf, sizeof buf, "%uw", nn)) {
-               return strndup(buf, text_buffer_size);
-       }
-       // well shoot, this outta' fit...
-       return strndup("<inf>", text_buffer_size);
-}
-
-/* Prints anything normally printed with snprintf according to the current value
- * of use_spacer.  Actually slightly more flexible than snprintf, as you can
- * safely specify the destination buffer as one of your inputs.  */
-int spaced_print(char *buf, int size, const char *format, int width, ...)
-{
-       int len = 0;
-       va_list argp;
-       char *tempbuf;
-
-       if (size < 1) {
-               return 0;
-       }
-       tempbuf = malloc(size * sizeof(char));
-
-       // Passes the varargs along to vsnprintf
-       va_start(argp, width);
-       vsnprintf(tempbuf, size, format, argp);
-       va_end(argp);
-
-       switch (use_spacer) {
-               case NO_SPACER:
-                       len = snprintf(buf, size, "%s", tempbuf);
-                       break;
-               case LEFT_SPACER:
-                       len = snprintf(buf, size, "%*s", width, tempbuf);
-                       break;
-               case RIGHT_SPACER:
-                       len = snprintf(buf, size, "%-*s", width, tempbuf);
-                       break;
-       }
-       free(tempbuf);
-       return len;
-}
-
-/* print percentage values
- *
- * - i.e., unsigned values between 0 and 100
- * - respect the value of pad_percents */
-static int percent_print(char *buf, int size, unsigned value)
-{
-       return spaced_print(buf, size, "%u", pad_percents, value);
-}
-
-static const char *suffixes[] = { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "" };
-
-/* converts from bytes to human readable format (K, M, G, T)
- *
- * The algorithm always divides by 1024, as unit-conversion of byte
- * counts suggests. But for output length determination we need to
- * compare with 1000 here, as we print in decimal form. */
-static void human_readable(long long num, char *buf, int size)
-{
-       const char **suffix = suffixes;
-       float fnum;
-       int precision;
-       int width;
-       const char *format;
-
-       /* Possibly just output as usual, for example for stdout usage */
-       if (!format_human_readable) {
-               spaced_print(buf, size, "%d", 6, round_to_int(num));
-               return;
-       }
-       if (short_units) {
-               width = 5;
-               format = "%.*f%.1s";
-       } else {
-               width = 7;
-               format = "%.*f%-3s";
-       }
-
-       if (llabs(num) < 1000LL) {
-               spaced_print(buf, size, format, width, 0, (float)num, *suffix);
-               return;
-       }
-
-       while (llabs(num / 1024) >= 1000LL && **(suffix + 2)) {
-               num /= 1024;
-               suffix++;
-       }
-
-       suffix++;
-       fnum = num / 1024.0;
-
-       /* fnum should now be < 1000, so looks like 'AAA.BBBBB'
-        *
-        * The goal is to always have a significance of 3, by
-        * adjusting the decimal part of the number. Sample output:
-        *  123MiB
-        * 23.4GiB
-        * 5.12B
-        * so the point of alignment resides between number and unit. The
-        * upside of this is that there is minimal padding necessary, though
-        * there should be a way to make alignment take place at the decimal
-        * dot (then with fixed width decimal part).
-        *
-        * Note the repdigits below: when given a precision value, printf()
-        * rounds the float to it, not just cuts off the remaining digits. So
-        * e.g. 99.95 with a precision of 1 gets 100.0, which again should be
-        * printed with a precision of 0. Yay. */
-
-       precision = 0;          /* print 100-999 without decimal part */
-       if (fnum < 99.95)
-               precision = 1;  /* print 10-99 with one decimal place */
-       if (fnum < 9.995)
-               precision = 2;  /* print 0-9 with two decimal places */
-
-       spaced_print(buf, size, format, width, precision, fnum, *suffix);
-}
-
-/* substitutes all occurrences of '\n' with SECRIT_MULTILINE_CHAR, which allows
- * multiline objects like $exec work with $align[rc] and friends
- */
-void substitute_newlines(char *p, long l)
-{
-       char *s = p;
-       if (l < 0) return;
-       while (p && *p && p < s + l) {
-               if (*p == '\n') {
-                       /* only substitute if it's not the last newline */
-                       *p = SECRIT_MULTILINE_CHAR;
-               }
-               p++;
-       }
-}
-
-void evaluate(const char *text, char *buffer)
-{
-       struct information *tmp_info;
-       struct text_object subroot;
-
-       tmp_info = malloc(sizeof(struct information));
-       memcpy(tmp_info, &ctx->info, sizeof(struct information));
-       parse_conky_vars(&subroot, text, buffer, tmp_info);
-       DBGP("evaluated '%s' to '%s'", text, buffer);
-
-       free_text_objects(&subroot, 1);
-       free(tmp_info);
-}
-
-void generate_text_internal(char *p, int p_max_size, struct text_object root,
-               struct information *cur)
-{
-       struct text_object *obj;
-#ifdef X11
-       int need_to_load_fonts = 0;
-#endif /* X11 */
-
-       /* for the OBJ_top* handler */
-       struct process **needed = 0;
-
-#ifdef HAVE_ICONV
-       char buff_in[p_max_size];
-       buff_in[0] = 0;
-       set_iconv_converting(0);
-#endif /* HAVE_ICONV */
-
-       p[0] = 0;
-       obj = root.next;
-       while (obj && p_max_size > 0) {
-               needed = 0; /* reset for top stuff */
-
-/* IFBLOCK jumping algorithm
- *
- * This is easier as it looks like:
- * - each IF checks it's condition
- *   - on FALSE: call DO_JUMP
- *   - on TRUE: don't care
- * - each ELSE calls DO_JUMP unconditionally
- * - each ENDIF is silently being ignored
- *
- * Why this works:
- * DO_JUMP overwrites the "obj" variable of the loop and sets it to the target
- * (i.e. the corresponding ELSE or ENDIF). After that, processing for the given
- * object can continue, free()ing stuff e.g., then the for-loop does the rest: as
- * regularly, "obj" is being updated to point to obj->next, so object parsing
- * continues right after the corresponding ELSE or ENDIF. This means that if we
- * find an ELSE, it's corresponding IF must not have jumped, so we need to jump
- * always. If we encounter an ENDIF, it's corresponding IF or ELSE has not
- * jumped, and there is nothing to do.
- */
-#define DO_JUMP { \
-       DBGP2("jumping"); \
-       obj = obj->data.ifblock.next; \
-}
-
-#define OBJ(a) break; case OBJ_##a:
-
-               switch (obj->type) {
-                       default:
-                               NORM_ERR("not implemented obj type %d", obj->type);
-                       OBJ(read_tcp) {
-                               int sock, received;
-                               struct sockaddr_in addr;
-                               struct hostent* he = gethostbyname(obj->data.read_tcp.host);
-                               if(he != NULL) {
-                                       sock = socket(he->h_addrtype, SOCK_STREAM, 0);
-                                       if(sock != -1) {
-                                               memset(&addr, 0, sizeof(addr));
-                                               addr.sin_family = AF_INET;
-                                               addr.sin_port = obj->data.read_tcp.port;
-                                               memcpy(&addr.sin_addr, he->h_addr, he->h_length);
-                                               if (connect(sock, (struct sockaddr*)&addr, sizeof(struct sockaddr)) == 0) {
-                                                       fd_set readfds;
-                                                       struct timeval tv;
-                                                       FD_ZERO(&readfds);
-                                                       FD_SET(sock, &readfds);
-                                                       tv.tv_sec = 1;
-                                                       tv.tv_usec = 0;
-                                                       if(select(sock + 1, &readfds, NULL, NULL, &tv) > 0){
-                                                               received = recv(sock, p, p_max_size, 0);
-                                                               p[received] = 0;
-                                                       }
-                                                       close(sock);
-                                               } else {
-                                                       NORM_ERR("read_tcp: Couldn't create a connection");
-                                               }
-                                       }else{
-                                               NORM_ERR("read_tcp: Couldn't create a socket");
-                                       }
-                               }else{
-                                       NORM_ERR("read_tcp: Problem with resolving the hostname");
-                               }
-                       }
-#ifndef __OpenBSD__
-                       OBJ(acpitemp) {
-                               temp_print(p, p_max_size, get_acpi_temperature(obj->data.i), TEMP_CELSIUS);
-                       }
-#endif /* !__OpenBSD__ */
-                       OBJ(freq) {
-                               if (obj->a) {
-                                       obj->a = get_freq(p, p_max_size, "%.0f", 1,
-                                                       obj->data.cpu_index);
-                               }
-                       }
-                       OBJ(freq_g) {
-                               if (obj->a) {
-#ifndef __OpenBSD__
-                                       obj->a = get_freq(p, p_max_size, "%'.2f", 1000,
-                                                       obj->data.cpu_index);
-#else
-                                       /* OpenBSD has no such flag (SUSv2) */
-                                       obj->a = get_freq(p, p_max_size, "%.2f", 1000,
-                                                       obj->data.cpu_index);
-#endif /* __OpenBSD */
-                               }
-                       }
-#if defined(__linux__)
-                       OBJ(voltage_mv) {
-                               if (obj->a) {
-                                       obj->a = get_voltage(p, p_max_size, "%.0f", 1,
-                                                       obj->data.cpu_index);
-                               }
-                       }
-                       OBJ(voltage_v) {
-                               if (obj->a) {
-                                       obj->a = get_voltage(p, p_max_size, "%'.3f", 1000,
-                                                       obj->data.cpu_index);
-                               }
-                       }
-
-#ifdef HAVE_IWLIB
-                       OBJ(wireless_essid) {
-                               snprintf(p, p_max_size, "%s", obj->data.net->essid);
-                       }
-                       OBJ(wireless_mode) {
-                               snprintf(p, p_max_size, "%s", obj->data.net->mode);
-                       }
-                       OBJ(wireless_bitrate) {
-                               snprintf(p, p_max_size, "%s", obj->data.net->bitrate);
-                       }
-                       OBJ(wireless_ap) {
-                               snprintf(p, p_max_size, "%s", obj->data.net->ap);
-                       }
-                       OBJ(wireless_link_qual) {
-                               spaced_print(p, p_max_size, "%d", 4,
-                                               obj->data.net->link_qual);
-                       }
-                       OBJ(wireless_link_qual_max) {
-                               spaced_print(p, p_max_size, "%d", 4,
-                                               obj->data.net->link_qual_max);
-                       }
-                       OBJ(wireless_link_qual_perc) {
-                               if (obj->data.net->link_qual_max > 0) {
-                                       spaced_print(p, p_max_size, "%.0f", 5,
-                                                       (double) obj->data.net->link_qual /
-                                                       obj->data.net->link_qual_max * 100);
-                               } else {
-                                       spaced_print(p, p_max_size, "unk", 5);
-                               }
-                       }
-                       OBJ(wireless_link_bar) {
-#ifdef X11
-                               if(output_methods & TO_X) {
-                                       new_bar(p, obj->a, obj->b, ((double) obj->data.net->link_qual /
-                                               obj->data.net->link_qual_max) * 255.0);
-                               }else{
-#endif /* X11 */
-                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
-                                       new_bar_in_shell(p, p_max_size, ((double) obj->data.net->link_qual /
-                                               obj->data.net->link_qual_max) * 100.0, obj->a);
-#ifdef X11
-                               }
-#endif /* X11 */
-                       }
-#endif /* HAVE_IWLIB */
-
-#endif /* __linux__ */
-
-#ifndef __OpenBSD__
-                       OBJ(adt746xcpu) {
-                               get_adt746x_cpu(p, p_max_size);
-                       }
-                       OBJ(adt746xfan) {
-                               get_adt746x_fan(p, p_max_size);
-                       }
-                       OBJ(acpifan) {
-                               get_acpi_fan(p, p_max_size);
-                       }
-                       OBJ(acpiacadapter) {
-                               get_acpi_ac_adapter(p, p_max_size);
-                       }
-                       OBJ(battery) {
-                               get_battery_stuff(p, p_max_size, obj->data.s, BATTERY_STATUS);
-                       }
-                       OBJ(battery_time) {
-                               get_battery_stuff(p, p_max_size, obj->data.s, BATTERY_TIME);
-                       }
-                       OBJ(battery_percent) {
-                               percent_print(p, p_max_size, get_battery_perct(obj->data.s));
-                       }
-                       OBJ(battery_bar) {
-#ifdef X11
-                               if(output_methods & TO_X) {
-                                       new_bar(p, obj->a, obj->b, get_battery_perct_bar(obj->data.s));
-                               }else{
-#endif /* X11 */
-                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
-                                       new_bar_in_shell(p, p_max_size, get_battery_perct_bar(obj->data.s) / 2.55, obj->a);
-#ifdef X11
-                               }
-#endif /* X11 */
-                       }
-                       OBJ(battery_short) {
-                               get_battery_short_status(p, p_max_size, obj->data.s);
-                       }
-#endif /* __OpenBSD__ */
-
-                       OBJ(buffers) {
-                               human_readable(cur->buffers * 1024, p, 255);
-                       }
-                       OBJ(cached) {
-                               human_readable(cur->cached * 1024, p, 255);
-                       }
-                       OBJ(cpu) {
-                               if (obj->data.cpu_index > info.cpu_count) {
-                                       NORM_ERR("obj->data.cpu_index %i info.cpu_count %i",
-                                                       obj->data.cpu_index, info.cpu_count);
-                                       CRIT_ERR(NULL, NULL, "attempting to use more CPUs than you have!");
-                               }
-                               percent_print(p, p_max_size,
-                                             round_to_int(cur->cpu_usage[obj->data.cpu_index] * 100.0));
-                       }
-#ifdef X11
-                       OBJ(cpugauge)
-                               new_gauge(p, obj->a, obj->b,
-                                               round_to_int(cur->cpu_usage[obj->data.cpu_index] * 255.0));
-#endif /* X11 */
-                       OBJ(cpubar) {
-#ifdef X11
-                               if(output_methods & TO_X) {
-                                       new_bar(p, obj->a, obj->b,
-                                               round_to_int(cur->cpu_usage[obj->data.cpu_index] * 255.0));
-                               }else{
-#endif /* X11 */
-                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
-                                       new_bar_in_shell(p, p_max_size, round_to_int(cur->cpu_usage[obj->data.cpu_index] * 100), obj->a);
-#ifdef X11
-                               }
-#endif /* X11 */
-                       }
-#ifdef X11
-                       OBJ(cpugraph) {
-                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
-                                               round_to_int(cur->cpu_usage[obj->data.cpu_index] * 100),
-                                               100, 1, obj->char_a, obj->char_b);
-                       }
-                       OBJ(loadgraph) {
-                               new_graph(p, obj->a, obj->b, obj->c, obj->d, cur->loadavg[0],
-                                               obj->e, 1, obj->char_a, obj->char_b);
-                       }
-#endif /* X11 */
-                       OBJ(color) {
-                               new_fg(p, obj->data.l);
-                       }
-#ifdef X11
-                       OBJ(color0) {
-                               new_fg(p, color0);
-                       }
-                       OBJ(color1) {
-                               new_fg(p, color1);
-                       }
-                       OBJ(color2) {
-                               new_fg(p, color2);
-                       }
-                       OBJ(color3) {
-                               new_fg(p, color3);
-                       }
-                       OBJ(color4) {
-                               new_fg(p, color4);
-                       }
-                       OBJ(color5) {
-                               new_fg(p, color5);
-                       }
-                       OBJ(color6) {
-                               new_fg(p, color6);
-                       }
-                       OBJ(color7) {
-                               new_fg(p, color7);
-                       }
-                       OBJ(color8) {
-                               new_fg(p, color8);
-                       }
-                       OBJ(color9) {
-                               new_fg(p, color9);
-                       }
-#endif /* X11 */
-                       OBJ(conky_version) {
-                               snprintf(p, p_max_size, "%s", VERSION);
-                       }
-                       OBJ(conky_build_date) {
-                               snprintf(p, p_max_size, "%s", BUILD_DATE);
-                       }
-                       OBJ(conky_build_arch) {
-                               snprintf(p, p_max_size, "%s", BUILD_ARCH);
-                       }
-#if defined(__linux__)
-                       OBJ(disk_protect) {
-                               snprintf(p, p_max_size, "%s",
-                                               get_disk_protect_queue(obj->data.s));
-                       }
-                       OBJ(i8k_version) {
-                               snprintf(p, p_max_size, "%s", i8k.version);
-                       }
-                       OBJ(i8k_bios) {
-                               snprintf(p, p_max_size, "%s", i8k.bios);
-                       }
-                       OBJ(i8k_serial) {
-                               snprintf(p, p_max_size, "%s", i8k.serial);
-                       }
-                       OBJ(i8k_cpu_temp) {
-                               int cpu_temp;
-
-                               sscanf(i8k.cpu_temp, "%d", &cpu_temp);
-                               temp_print(p, p_max_size, (double)cpu_temp, TEMP_CELSIUS);
-                       }
-                       OBJ(i8k_left_fan_status) {
-                               int left_fan_status;
-
-                               sscanf(i8k.left_fan_status, "%d", &left_fan_status);
-                               if (left_fan_status == 0) {
-                                       snprintf(p, p_max_size, "off");
-                               }
-                               if (left_fan_status == 1) {
-                                       snprintf(p, p_max_size, "low");
-                               }
-                               if (left_fan_status == 2) {
-                                       snprintf(p, p_max_size, "high");
-                               }
-                       }
-                       OBJ(i8k_right_fan_status) {
-                               int right_fan_status;
-
-                               sscanf(i8k.right_fan_status, "%d", &right_fan_status);
-                               if (right_fan_status == 0) {
-                                       snprintf(p, p_max_size, "off");
-                               }
-                               if (right_fan_status == 1) {
-                                       snprintf(p, p_max_size, "low");
-                               }
-                               if (right_fan_status == 2) {
-                                       snprintf(p, p_max_size, "high");
-                               }
-                       }
-                       OBJ(i8k_left_fan_rpm) {
-                               snprintf(p, p_max_size, "%s", i8k.left_fan_rpm);
-                       }
-                       OBJ(i8k_right_fan_rpm) {
-                               snprintf(p, p_max_size, "%s", i8k.right_fan_rpm);
-                       }
-                       OBJ(i8k_ac_status) {
-                               int ac_status;
-
-                               sscanf(i8k.ac_status, "%d", &ac_status);
-                               if (ac_status == -1) {
-                                       snprintf(p, p_max_size, "disabled (read i8k docs)");
-                               }
-                               if (ac_status == 0) {
-                                       snprintf(p, p_max_size, "off");
-                               }
-                               if (ac_status == 1) {
-                                       snprintf(p, p_max_size, "on");
-                               }
-                       }
-                       OBJ(i8k_buttons_status) {
-                               snprintf(p, p_max_size, "%s", i8k.buttons_status);
-                       }
-#if defined(IBM)
-                       OBJ(ibm_fan) {
-                               get_ibm_acpi_fan(p, p_max_size);
-                       }
-                       OBJ(ibm_temps) {
-                               get_ibm_acpi_temps();
-                               temp_print(p, p_max_size,
-                                          ibm_acpi.temps[obj->data.sensor], TEMP_CELSIUS);
-                       }
-                       OBJ(ibm_volume) {
-                               get_ibm_acpi_volume(p, p_max_size);
-                       }
-                       OBJ(ibm_brightness) {
-                               get_ibm_acpi_brightness(p, p_max_size);
-                       }
-#endif /* IBM */
-                       /* information from sony_laptop kernel module
-                        * /sys/devices/platform/sony-laptop */
-                       OBJ(sony_fanspeed) {
-                               get_sony_fanspeed(p, p_max_size);
-                       }
-                       OBJ(if_gw) {
-                               if (!cur->gw_info.count) {
-                                       DO_JUMP;
-                               }
-                       }
-                       OBJ(gw_iface) {
-                               snprintf(p, p_max_size, "%s", cur->gw_info.iface);
-                       }
-                       OBJ(gw_ip) {
-                               snprintf(p, p_max_size, "%s", cur->gw_info.ip);
-                       }
-                       OBJ(laptop_mode) {
-                               snprintf(p, p_max_size, "%d", get_laptop_mode());
-                       }
-                       OBJ(pb_battery) {
-                               get_powerbook_batt_info(p, p_max_size, obj->data.i);
-                       }
-#endif /* __linux__ */
-#if (defined(__FreeBSD__) || defined(__linux__))
-                       OBJ(if_up) {
-                               if ((obj->data.ifblock.s)
-                                               && (!interface_up(obj->data.ifblock.s))) {
-                                       DO_JUMP;
-                               }
-                       }
-#endif
-#ifdef __OpenBSD__
-                       OBJ(obsd_sensors_temp) {
-                               obsd_sensors.device = sensor_device;
-                               update_obsd_sensors();
-                               temp_print(p, p_max_size,
-                                          obsd_sensors.temp[obsd_sensors.device][obj->data.sensor],
-                                          TEMP_CELSIUS);
-                       }
-                       OBJ(obsd_sensors_fan) {
-                               obsd_sensors.device = sensor_device;
-                               update_obsd_sensors();
-                               snprintf(p, p_max_size, "%d",
-                                               obsd_sensors.fan[obsd_sensors.device][obj->data.sensor]);
-                       }
-                       OBJ(obsd_sensors_volt) {
-                               obsd_sensors.device = sensor_device;
-                               update_obsd_sensors();
-                               snprintf(p, p_max_size, "%.2f",
-                                               obsd_sensors.volt[obsd_sensors.device][obj->data.sensor]);
-                       }
-                       OBJ(obsd_vendor) {
-                               get_obsd_vendor(p, p_max_size);
-                       }
-                       OBJ(obsd_product) {
-                               get_obsd_product(p, p_max_size);
-                       }
-#endif /* __OpenBSD__ */
-#ifdef X11
-                       OBJ(font) {
-                               new_font(p, obj->data.s);
-                               need_to_load_fonts = 1;
-                       }
-#endif /* X11 */
-                       /* TODO: move this correction from kB to kB/s elsewhere
-                        * (or get rid of it??) */
-                       OBJ(diskio) {
-                               human_readable((obj->data.diskio->current / update_interval) * 1024LL,
-                                               p, p_max_size);
-                       }
-                       OBJ(diskio_write) {
-                               human_readable((obj->data.diskio->current_write / update_interval) * 1024LL,
-                                               p, p_max_size);
-                       }
-                       OBJ(diskio_read) {
-                               human_readable((obj->data.diskio->current_read / update_interval) * 1024LL,
-                                               p, p_max_size);
-                       }
-#ifdef X11
-                       OBJ(diskiograph) {
-                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
-                                         obj->data.diskio->current, obj->e, 1, obj->char_a, obj->char_b);
-                       }
-                       OBJ(diskiograph_read) {
-                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
-                                         obj->data.diskio->current_read, obj->e, 1, obj->char_a, obj->char_b);
-                       }
-                       OBJ(diskiograph_write) {
-                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
-                                         obj->data.diskio->current_write, obj->e, 1, obj->char_a, obj->char_b);
-                       }
-#endif /* X11 */
-                       OBJ(downspeed) {
-                               human_readable(obj->data.net->recv_speed, p, 255);
-                       }
-                       OBJ(downspeedf) {
-                               spaced_print(p, p_max_size, "%.1f", 8,
-                                               obj->data.net->recv_speed / 1024.0);
-                       }
-#ifdef X11
-                       OBJ(downspeedgraph) {
-                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
-                                       obj->data.net->recv_speed / 1024.0, obj->e, 1, obj->char_a, obj->char_b);
-                       }
-#endif /* X11 */
-                       OBJ(else) {
-                               /* Since we see you, you're if has not jumped.
-                                * Do Ninja jump here: without leaving traces.
-                                * This is to prevent us from stale jumped flags.
-                                */
-                               obj = obj->data.ifblock.next;
-                               continue;
-                       }
-                       OBJ(endif) {
-                               /* harmless object, just ignore */
-                       }
-                       OBJ(addr) {
-                               if ((obj->data.net->addr.sa_data[2] & 255) == 0
-                                               && (obj->data.net->addr.sa_data[3] & 255) == 0
-                                               && (obj->data.net->addr.sa_data[4] & 255) == 0
-                                               && (obj->data.net->addr.sa_data[5] & 255) == 0) {
-                                       snprintf(p, p_max_size, "No Address");
-                               } else {
-                                       snprintf(p, p_max_size, "%u.%u.%u.%u",
-                                               obj->data.net->addr.sa_data[2] & 255,
-                                               obj->data.net->addr.sa_data[3] & 255,
-                                               obj->data.net->addr.sa_data[4] & 255,
-                                               obj->data.net->addr.sa_data[5] & 255);
-                               }
-                       }
-#if defined(__linux__)
-                       OBJ(addrs) {
-                               if (NULL != obj->data.net->addrs && strlen(obj->data.net->addrs) > 2) {
-                                       obj->data.net->addrs[strlen(obj->data.net->addrs) - 2] = 0; /* remove ", " from end of string */
-                                       strcpy(p, obj->data.net->addrs);
-                               } else {
-                                       strcpy(p, "0.0.0.0");
-                               }
-                       }
-#endif /* __linux__ */
-#if defined(IMLIB2) && defined(X11)
-                       OBJ(image) {
-                               /* doesn't actually draw anything, just queues it omp.  the
-                                * image will get drawn after the X event loop */
-                               cimlib_add_image(obj->data.s);
-                       }
-#endif /* IMLIB2 */
-                       OBJ(eval) {
-                               evaluate(obj->data.s, p);
-                       }
-                       OBJ(exec) {
-                               read_exec(obj->data.s, p, text_buffer_size);
-                               remove_deleted_chars(p);
-                       }
-                       OBJ(execp) {
-                               struct information *tmp_info;
-                               struct text_object subroot;
-
-                               read_exec(obj->data.s, p, text_buffer_size);
-
-                               tmp_info = malloc(sizeof(struct information));
-                               memcpy(tmp_info, cur, sizeof(struct information));
-                               parse_conky_vars(&subroot, p, p, tmp_info);
-
-                               free_text_objects(&subroot, 1);
-                               free(tmp_info);
-                       }
-#ifdef X11
-                       OBJ(execgauge) {
-                               double barnum;
-
-                               read_exec(obj->data.s, p, text_buffer_size);
-                               barnum = get_barnum(p); /*using the same function*/
-
-                               if (barnum >= 0.0) {
-                                       barnum /= 100;
-                                       new_gauge(p, obj->a, obj->b, round_to_int(barnum * 255.0));
-                               }
-                       }
-#endif /* X11 */
-                       OBJ(execbar) {
-                               double barnum;
-
-                               read_exec(obj->data.s, p, text_buffer_size);
-                               barnum = get_barnum(p);
-
-                               if (barnum >= 0.0) {
-#ifdef X11
-                                       if(output_methods & TO_X) {
-                                               barnum /= 100;
-                                               new_bar(p, obj->a, obj->b, round_to_int(barnum * 255.0));
-                                       }else{
-#endif /* X11 */
-                                               if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
-                                               new_bar_in_shell(p, p_max_size, barnum, obj->a);
-#ifdef X11
-                                       }
-#endif /* X11 */
-                               }
-                       }
-#ifdef X11
-                       OBJ(execgraph) {
-                               char showaslog = FALSE;
-                               char tempgrad = FALSE;
-                               double barnum;
-                               char *cmd = obj->data.s;
-
-                               if (strstr(cmd, " "TEMPGRAD) && strlen(cmd) > strlen(" "TEMPGRAD)) {
-                                       tempgrad = TRUE;
-                                       cmd += strlen(" "TEMPGRAD);
-                               }
-                               if (strstr(cmd, " "LOGGRAPH) && strlen(cmd) > strlen(" "LOGGRAPH)) {
-                                       showaslog = TRUE;
-                                       cmd += strlen(" "LOGGRAPH);
-                               }
-                               read_exec(cmd, p, text_buffer_size);
-                               barnum = get_barnum(p);
-
-                               if (barnum > 0) {
-                                       new_graph(p, obj->a, obj->b, obj->c, obj->d, round_to_int(barnum),
-                                                       100, 1, showaslog, tempgrad);
-                               }
-                       }
-#endif /* X11 */
-                       OBJ(execibar) {
-                               if (current_update_time - obj->data.execi.last_update
-                                               >= obj->data.execi.interval) {
-                                       double barnum;
-
-                                       read_exec(obj->data.execi.cmd, p, text_buffer_size);
-                                       barnum = get_barnum(p);
-
-                                       if (barnum >= 0.0) {
-                                               obj->f = barnum;
-                                       }
-                                       obj->data.execi.last_update = current_update_time;
-                               }
-#ifdef X11
-                               if(output_methods & TO_X) {
-                                       new_bar(p, obj->a, obj->b, round_to_int(obj->f * 2.55));
-                               } else {
-#endif /* X11 */
-                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
-                                       new_bar_in_shell(p, p_max_size, round_to_int(obj->f), obj->a);
-#ifdef X11
-                               }
-#endif /* X11 */
-                       }
-#ifdef X11
-                       OBJ(execigraph) {
-                               if (current_update_time - obj->data.execi.last_update
-                                               >= obj->data.execi.interval) {
-                                       double barnum;
-                                       char showaslog = FALSE;
-                                       char tempgrad = FALSE;
-                                       char *cmd = obj->data.execi.cmd;
-
-                                       if (strstr(cmd, " "TEMPGRAD) && strlen(cmd) > strlen(" "TEMPGRAD)) {
-                                               tempgrad = TRUE;
-                                               cmd += strlen(" "TEMPGRAD);
-                                       }
-                                       if (strstr(cmd, " "LOGGRAPH) && strlen(cmd) > strlen(" "LOGGRAPH)) {
-                                               showaslog = TRUE;
-                                               cmd += strlen(" "LOGGRAPH);
-                                       }
-                                       obj->char_a = showaslog;
-                                       obj->char_b = tempgrad;
-                                       read_exec(cmd, p, text_buffer_size);
-                                       barnum = get_barnum(p);
-
-                                       if (barnum >= 0.0) {
-                                               obj->f = barnum;
-                                       }
-                                       obj->data.execi.last_update = current_update_time;
-                               }
-                               new_graph(p, obj->a, obj->b, obj->c, obj->d, (int) (obj->f), 100, 1, obj->char_a, obj->char_b);
-                       }
-                       OBJ(execigauge) {
-                               if (current_update_time - obj->data.execi.last_update
-                                               >= obj->data.execi.interval) {
-                                       double barnum;
-
-                                       read_exec(obj->data.execi.cmd, p, text_buffer_size);
-                                       barnum = get_barnum(p);
-
-                                       if (barnum >= 0.0) {
-                                               obj->f = 255 * barnum / 100.0;
-                                       }
-                                       obj->data.execi.last_update = current_update_time;
-                               }
-                               new_gauge(p, obj->a, obj->b, round_to_int(obj->f));
-                       }
-#endif /* X11 */
-                       OBJ(execi) {
-                               if (current_update_time - obj->data.execi.last_update
-                                               >= obj->data.execi.interval
-                                               && obj->data.execi.interval != 0) {
-                                       read_exec(obj->data.execi.cmd, obj->data.execi.buffer,
-                                               text_buffer_size);
-                                       obj->data.execi.last_update = current_update_time;
-                               }
-                               snprintf(p, text_buffer_size, "%s", obj->data.execi.buffer);
-                       }
-                       OBJ(execpi) {
-                               struct text_object subroot;
-                               struct information *tmp_info =
-                                       malloc(sizeof(struct information));
-                               memcpy(tmp_info, cur, sizeof(struct information));
-
-                               if (current_update_time - obj->data.execi.last_update
-                                               < obj->data.execi.interval
-                                               || obj->data.execi.interval == 0) {
-                                       parse_conky_vars(&subroot, obj->data.execi.buffer, p, tmp_info);
-                               } else {
-                                       char *output = obj->data.execi.buffer;
-                                       FILE *fp = pid_popen(obj->data.execi.cmd, "r", &childpid);
-                                       int length = fread(output, 1, text_buffer_size, fp);
-
-                                       pclose(fp);
-
-                                       output[length] = '\0';
-                                       if (length > 0 && output[length - 1] == '\n') {
-                                               output[length - 1] = '\0';
-                                       }
-
-                                       parse_conky_vars(&subroot, obj->data.execi.buffer, p, tmp_info);
-                                       obj->data.execi.last_update = current_update_time;
-                               }
-                               free_text_objects(&subroot, 1);
-                               free(tmp_info);
-                       }
-                       OBJ(texeci) {
-                               if (!obj->data.texeci.p_timed_thread) {
-                                       obj->data.texeci.p_timed_thread =
-                                               timed_thread_create(&threaded_exec,
-                                               (void *) obj, obj->data.texeci.interval * 1000000);
-                                       if (!obj->data.texeci.p_timed_thread) {
-                                               NORM_ERR("Error creating texeci timed thread");
-                                       }
-                                       /*
-                                        * note that we don't register this thread with the
-                                        * timed_thread list, because we destroy it manually
-                                        */
-                                       if (timed_thread_run(obj->data.texeci.p_timed_thread)) {
-                                               NORM_ERR("Error running texeci timed thread");
-                                       }
-                               } else {
-                                       timed_thread_lock(obj->data.texeci.p_timed_thread);
-                                       snprintf(p, text_buffer_size, "%s", obj->data.texeci.buffer);
-                                       timed_thread_unlock(obj->data.texeci.p_timed_thread);
-                               }
-                       }
-                       OBJ(imap_unseen) {
-                               struct mail_s *mail = ensure_mail_thread(obj, imap_thread, "imap");
-
-                               if (mail && mail->p_timed_thread) {
-                                       timed_thread_lock(mail->p_timed_thread);
-                                       snprintf(p, p_max_size, "%lu", mail->unseen);
-                                       timed_thread_unlock(mail->p_timed_thread);
-                               }
-                       }
-                       OBJ(imap_messages) {
-                               struct mail_s *mail = ensure_mail_thread(obj, imap_thread, "imap");
-
-                               if (mail && mail->p_timed_thread) {
-                                       timed_thread_lock(mail->p_timed_thread);
-                                       snprintf(p, p_max_size, "%lu", mail->messages);
-                                       timed_thread_unlock(mail->p_timed_thread);
-                               }
-                       }
-                       OBJ(pop3_unseen) {
-                               struct mail_s *mail = ensure_mail_thread(obj, pop3_thread, "pop3");
-
-                               if (mail && mail->p_timed_thread) {
-                                       timed_thread_lock(mail->p_timed_thread);
-                                       snprintf(p, p_max_size, "%lu", mail->unseen);
-                                       timed_thread_unlock(mail->p_timed_thread);
-                               }
-                       }
-                       OBJ(pop3_used) {
-                               struct mail_s *mail = ensure_mail_thread(obj, pop3_thread, "pop3");
-
-                               if (mail && mail->p_timed_thread) {
-                                       timed_thread_lock(mail->p_timed_thread);
-                                       snprintf(p, p_max_size, "%.1f",
-                                               mail->used / 1024.0 / 1024.0);
-                                       timed_thread_unlock(mail->p_timed_thread);
-                               }
-                       }
-                       OBJ(fs_bar) {
-                               if (obj->data.fs != NULL) {
-                                       if (obj->data.fs->size == 0) {
-#ifdef X11
-                                               if(output_methods & TO_X) {
-                                                       new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h, 255);
-                                               }else{
-#endif /* X11 */
-                                                       if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
-                                                       new_bar_in_shell(p, p_max_size, 100, obj->data.fsbar.w);
-#ifdef X11
-                                               }
-#endif /* X11 */
-                                       } else {
-#ifdef X11
-                                               if(output_methods & TO_X) {
-                                                       new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h,
-                                                               (int) (255 - obj->data.fsbar.fs->avail * 255 /
-                                                               obj->data.fs->size));
-                                               }else{
-#endif /* X11 */
-                                                       if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
-                                                       new_bar_in_shell(p, p_max_size,
-                                                               (int) (100 - obj->data.fsbar.fs->avail * 100 / obj->data.fs->size), obj->data.fsbar.w);
-#ifdef X11
-                                               }
-#endif /* X11 */
-                                       }
-                               }
-                       }
-                       OBJ(fs_free) {
-                               if (obj->data.fs != NULL) {
-                                       human_readable(obj->data.fs->avail, p, 255);
-                               }
-                       }
-                       OBJ(fs_free_perc) {
-                               if (obj->data.fs != NULL) {
-                                       int val = 0;
-
-                                       if (obj->data.fs->size) {
-                                               val = obj->data.fs->avail * 100 / obj->data.fs->size;
-                                       }
-
-                                       percent_print(p, p_max_size, val);
-                               }
-                       }
-                       OBJ(fs_size) {
-                               if (obj->data.fs != NULL) {
-                                       human_readable(obj->data.fs->size, p, 255);
-                               }
-                       }
-                       OBJ(fs_type) {
-                               if (obj->data.fs != NULL)
-                                       snprintf(p, p_max_size, "%s", obj->data.fs->type);
-                       }
-                       OBJ(fs_used) {
-                               if (obj->data.fs != NULL) {
-                                       human_readable(obj->data.fs->size - obj->data.fs->free, p,
-                                                       255);
-                               }
-                       }
-                       OBJ(fs_bar_free) {
-                               if (obj->data.fs != NULL) {
-                                       if (obj->data.fs->size == 0) {
-#ifdef X11
-                                               if(output_methods & TO_X) {
-                                                       new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h, 255);
-                                               }else{
-#endif /* X11 */
-                                                       if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
-                                                       new_bar_in_shell(p, p_max_size, 100, obj->data.fsbar.w);
-#ifdef X11
-                                               }
-#endif /* X11 */
-                                       } else {
-#ifdef X11
-                                               if(output_methods & TO_X) {
-                                                       new_bar(p, obj->data.fsbar.w, obj->data.fsbar.h,
-                                                               (int) (obj->data.fsbar.fs->avail * 255 /
-                                                               obj->data.fs->size));
-                                               }else{
-#endif /* X11 */
-                                                       if(!obj->data.fsbar.w) obj->data.fsbar.w = DEFAULT_BAR_WIDTH_NO_X;
-                                                       new_bar_in_shell(p, p_max_size,
-                                                               (int) (obj->data.fsbar.fs->avail * 100 / obj->data.fs->size), obj->data.fsbar.w);
-#ifdef X11
-                                               }
-#endif /* X11 */
-                                       }
-                               }
-                       }
-                       OBJ(fs_used_perc) {
-                               if (obj->data.fs != NULL) {
-                                       int val = 0;
-
-                                       if (obj->data.fs->size) {
-                                               val = obj->data.fs->free
-                                                               * 100 /
-                                                       obj->data.fs->size;
-                                       }
-
-                                       percent_print(p, p_max_size, 100 - val);
-                               }
-                       }
-                       OBJ(loadavg) {
-                               float *v = info.loadavg;
-
-                               if (obj->data.loadavg[2]) {
-                                       snprintf(p, p_max_size, "%.2f %.2f %.2f",
-                                               v[obj->data.loadavg[0] - 1],
-                                               v[obj->data.loadavg[1] - 1],
-                                               v[obj->data.loadavg[2] - 1]);
-                               } else if (obj->data.loadavg[1]) {
-                                       snprintf(p, p_max_size, "%.2f %.2f",
-                                               v[obj->data.loadavg[0] - 1],
-                                               v[obj->data.loadavg[1] - 1]);
-                               } else if (obj->data.loadavg[0]) {
-                                       snprintf(p, p_max_size, "%.2f",
-                                               v[obj->data.loadavg[0] - 1]);
-                               }
-                       }
-                       OBJ(goto) {
-                               new_goto(p, obj->data.i);
-                       }
-                       OBJ(tab) {
-                               new_tab(p, obj->data.pair.a, obj->data.pair.b);
-                       }
-#ifdef X11
-                       OBJ(hr) {
-                               new_hr(p, obj->data.i);
-                       }
-#endif
-                       OBJ(nameserver) {
-                               if (cur->nameserver_info.nscount > obj->data.i)
-                                       snprintf(p, p_max_size, "%s",
-                                                       cur->nameserver_info.ns_list[obj->data.i]);
-                       }
-#ifdef EVE
-                       OBJ(eve) {
-                               char *skill = eve(obj->data.eve.userid, obj->data.eve.apikey, obj->data.eve.charid);
-                               snprintf(p, p_max_size, "%s", skill);
-                       }
-#endif
-#ifdef HAVE_CURL
-                       OBJ(curl) {
-                               if (obj->data.curl.uri != NULL) {
-                                       ccurl_process_info(p, p_max_size, obj->data.curl.uri, obj->data.curl.interval);
-                               } else {
-                                       NORM_ERR("error processing Curl data");
-                               }
-                       }
-#endif
-#ifdef RSS
-                       OBJ(rss) {
-                               if (obj->data.rss.uri != NULL) {
-                                       rss_process_info(p, p_max_size, obj->data.rss.uri, obj->data.rss.action, obj->data.rss.act_par, obj->data.rss.interval, obj->data.rss.nrspaces);
-                               } else {
-                                       NORM_ERR("error processing RSS data");
-                               }
-                       }
-#endif
-#ifdef WEATHER
-                       OBJ(weather) {
-                               if (obj->data.weather.uri != NULL) {
-                                       weather_process_info(p, p_max_size, obj->data.weather.uri, obj->data.weather.data_type, obj->data.weather.interval);
-                               } else {
-                                       NORM_ERR("error processing weather data, check that you have a valid XOAP key if using XOAP.");
-                               }
-                       }
-#endif
-#ifdef XOAP
-                       OBJ(weather_forecast) {
-                               if (obj->data.weather_forecast.uri != NULL) {
-                                       weather_forecast_process_info(p, p_max_size, obj->data.weather_forecast.uri, obj->data.weather_forecast.day, obj->data.weather_forecast.data_type, obj->data.weather_forecast.interval);
-                               } else {
-                                       NORM_ERR("error processing weather forecast data, check that you have a valid XOAP key if using XOAP.");
-                               }
-                       }
-#endif
-#ifdef HAVE_LUA
-                       OBJ(lua) {
-                               char *str = llua_getstring(obj->data.s);
-                               if (str) {
-                                       snprintf(p, p_max_size, "%s", str);
-                                       free(str);
-                               }
-                       }
-                       OBJ(lua_parse) {
-                               char *str = llua_getstring(obj->data.s);
-                               if (str) {
-                                       evaluate(str, p);
-                                       free(str);
-                               }
-                       }
-                       OBJ(lua_bar) {
-                               double per;
-                               if (llua_getnumber(obj->data.s, &per)) {
-#ifdef X11
-                                       if(output_methods & TO_X) {
-                                               new_bar(p, obj->a, obj->b, (per/100.0 * 255));
-                                       } else {
-#endif /* X11 */
-                                               if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
-                                               new_bar_in_shell(p, p_max_size, per, obj->a);
-#ifdef X11
-                                       }
-#endif /* X11 */
-                               }
-                       }
-#ifdef X11
-                       OBJ(lua_graph) {
-                               double per;
-                               if (llua_getnumber(obj->data.s, &per)) {
-                                       new_graph(p, obj->a, obj->b, obj->c, obj->d,
-                                                       per, obj->e, 1, obj->char_a, obj->char_b);
-                               }
-                       }
-                       OBJ(lua_gauge) {
-                               double per;
-                               if (llua_getnumber(obj->data.s, &per)) {
-                                       new_gauge(p, obj->a, obj->b, (per/100.0 * 255));
-                               }
-                       }
-#endif /* X11 */
-#endif /* HAVE_LUA */
-#ifdef HDDTEMP
-                       OBJ(hddtemp) {
-                               char *endptr, unit;
-                               long val;
-                               if (obj->data.hddtemp.update_time < current_update_time - 30) {
-                                       if (obj->data.hddtemp.temp)
-                                               free(obj->data.hddtemp.temp);
-                                       obj->data.hddtemp.temp = get_hddtemp_info(obj->data.hddtemp.dev,
-                                                       obj->data.hddtemp.addr, obj->data.hddtemp.port);
-                                       obj->data.hddtemp.update_time = current_update_time;
-                               }
-                               if (!obj->data.hddtemp.temp) {
-                                       snprintf(p, p_max_size, "N/A");
-                               } else {
-                                       val = strtol(obj->data.hddtemp.temp + 1, &endptr, 10);
-                                       unit = obj->data.hddtemp.temp[0];
-
-                                       if (*endptr != '\0')
-                                               snprintf(p, p_max_size, "N/A");
-                                       else if (unit == 'C')
-                                               temp_print(p, p_max_size, (double)val, TEMP_CELSIUS);
-                                       else if (unit == 'F')
-                                               temp_print(p, p_max_size, (double)val, TEMP_FAHRENHEIT);
-                                       else
-                                               snprintf(p, p_max_size, "N/A");
-                               }
-                       }
-#endif
-                       OBJ(offset) {
-                               new_offset(p, obj->data.i);
-                       }
-                       OBJ(voffset) {
-                               new_voffset(p, obj->data.i);
-                       }
-#ifdef __linux__
-                       OBJ(i2c) {
-                               double r;
-
-                               r = get_sysfs_info(&obj->data.sysfs.fd, obj->data.sysfs.arg,
-                                       obj->data.sysfs.devtype, obj->data.sysfs.type);
-
-                               r = r * obj->data.sysfs.factor + obj->data.sysfs.offset;
-
-                               if (!strncmp(obj->data.sysfs.type, "temp", 4)) {
-                                       temp_print(p, p_max_size, r, TEMP_CELSIUS);
-                               } else if (r >= 100.0 || r == 0) {
-                                       snprintf(p, p_max_size, "%d", (int) r);
-                               } else {
-                                       snprintf(p, p_max_size, "%.1f", r);
-                               }
-                       }
-                       OBJ(platform) {
-                               double r;
-
-                               r = get_sysfs_info(&obj->data.sysfs.fd, obj->data.sysfs.arg,
-                                       obj->data.sysfs.devtype, obj->data.sysfs.type);
-
-                               r = r * obj->data.sysfs.factor + obj->data.sysfs.offset;
-
-                               if (!strncmp(obj->data.sysfs.type, "temp", 4)) {
-                                       temp_print(p, p_max_size, r, TEMP_CELSIUS);
-                               } else if (r >= 100.0 || r == 0) {
-                                       snprintf(p, p_max_size, "%d", (int) r);
-                               } else {
-                                       snprintf(p, p_max_size, "%.1f", r);
-                               }
-                       }
-                       OBJ(hwmon) {
-                               double r;
-
-                               r = get_sysfs_info(&obj->data.sysfs.fd, obj->data.sysfs.arg,
-                                       obj->data.sysfs.devtype, obj->data.sysfs.type);
-
-                               r = r * obj->data.sysfs.factor + obj->data.sysfs.offset;
-
-                               if (!strncmp(obj->data.sysfs.type, "temp", 4)) {
-                                       temp_print(p, p_max_size, r, TEMP_CELSIUS);
-                               } else if (r >= 100.0 || r == 0) {
-                                       snprintf(p, p_max_size, "%d", (int) r);
-                               } else {
-                                       snprintf(p, p_max_size, "%.1f", r);
-                               }
-                       }
-#endif /* __linux__ */
-                       OBJ(alignr) {
-                               new_alignr(p, obj->data.i);
-                       }
-                       OBJ(alignc) {
-                               new_alignc(p, obj->data.i);
-                       }
-                       OBJ(if_empty) {
-                               char buf[max_user_text];
-                               struct information *tmp_info =
-                                       malloc(sizeof(struct information));
-                               memcpy(tmp_info, cur, sizeof(struct information));
-                               generate_text_internal(buf, max_user_text,
-                                                      *obj->sub, tmp_info);
-
-                               if (strlen(buf) != 0) {
-                                       DO_JUMP;
-                               }
-                               free(tmp_info);
-                       }
-                       OBJ(if_match) {
-                               char expression[max_user_text];
-                               int val;
-                               struct information *tmp_info;
-
-                               tmp_info = malloc(sizeof(struct information));
-                               memcpy(tmp_info, cur, sizeof(struct information));
-                               generate_text_internal(expression, max_user_text,
-                                                      *obj->sub, tmp_info);
-                               DBGP("parsed arg into '%s'", expression);
-
-                               val = compare(expression);
-                               if (val == -2) {
-                                       NORM_ERR("compare failed for expression '%s'",
-                                                       expression);
-                               } else if (!val) {
-                                       DO_JUMP;
-                               }
-                               free(tmp_info);
-                       }
-                       OBJ(if_existing) {
-                               if (obj->data.ifblock.str
-                                   && !check_contains(obj->data.ifblock.s,
-                                                      obj->data.ifblock.str)) {
-                                       DO_JUMP;
-                               } else if (obj->data.ifblock.s
-                                          && access(obj->data.ifblock.s, F_OK)) {
-                                       DO_JUMP;
-                               }
-                       }
-                       OBJ(if_mounted) {
-                               if ((obj->data.ifblock.s)
-                                               && (!check_mount(obj->data.ifblock.s))) {
-                                       DO_JUMP;
-                               }
-                       }
-                       OBJ(if_running) {
-#ifdef __linux__
-                               if (!get_process_by_name(obj->data.ifblock.s)) {
-#else
-                               if ((obj->data.ifblock.s) && system(obj->data.ifblock.s)) {
-#endif
-                                       DO_JUMP;
-                               }
-                       }
-#if defined(__linux__)
-                       OBJ(ioscheduler) {
-                               snprintf(p, p_max_size, "%s", get_ioscheduler(obj->data.s));
-                       }
-#endif
-                       OBJ(kernel) {
-                               snprintf(p, p_max_size, "%s", cur->uname_s.release);
-                       }
-                       OBJ(machine) {
-                               snprintf(p, p_max_size, "%s", cur->uname_s.machine);
-                       }
-
-                       /* memory stuff */
-                       OBJ(mem) {
-                               human_readable(cur->mem * 1024, p, 255);
-                       }
-                       OBJ(memeasyfree) {
-                               human_readable(cur->memeasyfree * 1024, p, 255);
-                       }
-                       OBJ(memfree) {
-                               human_readable(cur->memfree * 1024, p, 255);
-                       }
-                       OBJ(memmax) {
-                               human_readable(cur->memmax * 1024, p, 255);
-                       }
-                       OBJ(memperc) {
-                               if (cur->memmax)
-                                       percent_print(p, p_max_size, cur->mem * 100 / cur->memmax);
-                       }
-#ifdef X11
-                       OBJ(memgauge){
-                               new_gauge(p, obj->data.pair.a, obj->data.pair.b,
-                                       cur->memmax ? (cur->mem * 255) / (cur->memmax) : 0);
-                       }
-#endif /* X11 */
-                       OBJ(membar) {
-#ifdef X11
-                               if(output_methods & TO_X) {
-                                       new_bar(p, obj->data.pair.a, obj->data.pair.b,
-                                               cur->memmax ? (cur->mem * 255) / (cur->memmax) : 0);
-                               }else{
-#endif /* X11 */
-                                       if(!obj->data.pair.a) obj->data.pair.a = DEFAULT_BAR_WIDTH_NO_X;
-                                       new_bar_in_shell(p, p_max_size, cur->memmax ? (cur->mem * 100) / (cur->memmax) : 0, obj->data.pair.a);
-#ifdef X11
-                               }
-#endif /* X11 */
-                       }
-#ifdef X11
-                       OBJ(memgraph) {
-                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
-                                       cur->memmax ? (cur->mem * 100.0) / (cur->memmax) : 0.0,
-                                       100, 1, obj->char_a, obj->char_b);
-                       }
-#endif /* X11 */
-                       /* mixer stuff */
-                       OBJ(mixer) {
-                               percent_print(p, p_max_size, mixer_get_avg(obj->data.l));
-                       }
-                       OBJ(mixerl) {
-                               percent_print(p, p_max_size, mixer_get_left(obj->data.l));
-                       }
-                       OBJ(mixerr) {
-                               percent_print(p, p_max_size, mixer_get_right(obj->data.l));
-                       }
-#ifdef X11
-                       OBJ(mixerbar) {
-                               new_bar(p, obj->data.mixerbar.w, obj->data.mixerbar.h,
-                                       mixer_to_255(obj->data.mixerbar.l,mixer_get_avg(obj->data.mixerbar.l)));
-                       }
-                       OBJ(mixerlbar) {
-                               new_bar(p, obj->data.mixerbar.w, obj->data.mixerbar.h,
-                                       mixer_to_255(obj->data.mixerbar.l,mixer_get_left(obj->data.mixerbar.l)));
-                       }
-                       OBJ(mixerrbar) {
-                               new_bar(p, obj->data.mixerbar.w, obj->data.mixerbar.h,
-                                       mixer_to_255(obj->data.mixerbar.l,mixer_get_right(obj->data.mixerbar.l)));
-                       }
-#endif /* X11 */
-                       OBJ(if_mixer_mute) {
-                               if (!mixer_is_mute(obj->data.ifblock.i)) {
-                                       DO_JUMP;
-                               }
-                       }
-#ifdef X11
-#define NOT_IN_X "Not running in X"
-                       OBJ(monitor) {
-                               if(x_initialised != YES) {
-                                       strncpy(p, NOT_IN_X, p_max_size);
-                               }else{
-                                       snprintf(p, p_max_size, "%d", cur->x11.monitor.current);
-                               }
-                       }
-                       OBJ(monitor_number) {
-                               if(x_initialised != YES) {
-                                       strncpy(p, NOT_IN_X, p_max_size);
-                               }else{
-                                       snprintf(p, p_max_size, "%d", cur->x11.monitor.number);
-                               }
-                       }
-                       OBJ(desktop) {
-                               if(x_initialised != YES) {
-                                       strncpy(p, NOT_IN_X, p_max_size);
-                               }else{
-                                       snprintf(p, p_max_size, "%d", cur->x11.desktop.current);
-                               }
-                       }
-                       OBJ(desktop_number) {
-                               if(x_initialised != YES) {
-                                       strncpy(p, NOT_IN_X, p_max_size);
-                               }else{
-                                       snprintf(p, p_max_size, "%d", cur->x11.desktop.number);
-                               }
-                       }
-                       OBJ(desktop_name) {
-                               if(x_initialised != YES) {
-                                       strncpy(p, NOT_IN_X, p_max_size);
-                               }else if(cur->x11.desktop.name != NULL) {
-                                       strncpy(p, cur->x11.desktop.name, p_max_size);
-                               }
-                       }
-#endif /* X11 */
-
-                       /* mail stuff */
-                       OBJ(mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d", obj->data.local_mail.mail_count);
-                       }
-                       OBJ(new_mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d",
-                                       obj->data.local_mail.new_mail_count);
-                       }
-                       OBJ(seen_mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d",
-                                       obj->data.local_mail.seen_mail_count);
-                       }
-                       OBJ(unseen_mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d",
-                                       obj->data.local_mail.unseen_mail_count);
-                       }
-                       OBJ(flagged_mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d",
-                                       obj->data.local_mail.flagged_mail_count);
-                       }
-                       OBJ(unflagged_mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d",
-                                       obj->data.local_mail.unflagged_mail_count);
-                       }
-                       OBJ(forwarded_mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d",
-                                       obj->data.local_mail.forwarded_mail_count);
-                       }
-                       OBJ(unforwarded_mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d",
-                                       obj->data.local_mail.unforwarded_mail_count);
-                       }
-                       OBJ(replied_mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d",
-                                       obj->data.local_mail.replied_mail_count);
-                       }
-                       OBJ(unreplied_mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d",
-                                       obj->data.local_mail.unreplied_mail_count);
-                       }
-                       OBJ(draft_mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d",
-                                       obj->data.local_mail.draft_mail_count);
-                       }
-                       OBJ(trashed_mails) {
-                               update_mail_count(&obj->data.local_mail);
-                               snprintf(p, p_max_size, "%d",
-                                       obj->data.local_mail.trashed_mail_count);
-                       }
-                       OBJ(mboxscan) {
-                               mbox_scan(obj->data.mboxscan.args, obj->data.mboxscan.output,
-                                       text_buffer_size);
-                               snprintf(p, p_max_size, "%s", obj->data.mboxscan.output);
-                       }
-                       OBJ(nodename) {
-                               snprintf(p, p_max_size, "%s", cur->uname_s.nodename);
-                       }
-                       OBJ(outlinecolor) {
-                               new_outline(p, obj->data.l);
-                       }
-                       OBJ(processes) {
-                               spaced_print(p, p_max_size, "%hu", 4, cur->procs);
-                       }
-                       OBJ(running_processes) {
-                               spaced_print(p, p_max_size, "%hu", 4, cur->run_procs);
-                       }
-                       OBJ(text) {
-                               snprintf(p, p_max_size, "%s", obj->data.s);
-                       }
-#ifdef X11
-                       OBJ(shadecolor) {
-                               new_bg(p, obj->data.l);
-                       }
-                       OBJ(stippled_hr) {
-                               new_stippled_hr(p, obj->data.pair.a, obj->data.pair.b);
-                       }
-#endif /* X11 */
-                       OBJ(swap) {
-                               human_readable(cur->swap * 1024, p, 255);
-                       }
-                       OBJ(swapfree) {
-                               human_readable(cur->swapfree * 1024, p, 255);
-                       }
-                       OBJ(swapmax) {
-                               human_readable(cur->swapmax * 1024, p, 255);
-                       }
-                       OBJ(swapperc) {
-                               if (cur->swapmax == 0) {
-                                       strncpy(p, "No swap", p_max_size);
-                               } else {
-                                       percent_print(p, p_max_size, cur->swap * 100 / cur->swapmax);
-                               }
-                       }
-                       OBJ(swapbar) {
-#ifdef X11
-                               if(output_methods & TO_X) {
-                                       new_bar(p, obj->data.pair.a, obj->data.pair.b,
-                                               cur->swapmax ? (cur->swap * 255) / (cur->swapmax) : 0);
-                               }else{
-#endif /* X11 */
-                                       if(!obj->data.pair.a) obj->data.pair.a = DEFAULT_BAR_WIDTH_NO_X;
-                                       new_bar_in_shell(p, p_max_size, cur->swapmax ? (cur->swap * 100) / (cur->swapmax) : 0, obj->data.pair.a);
-#ifdef X11
-                               }
-#endif /* X11 */
-                       }
-                       OBJ(sysname) {
-                               snprintf(p, p_max_size, "%s", cur->uname_s.sysname);
-                       }
-                       OBJ(time) {
-                               time_t t = time(NULL);
-                               struct tm *tm = localtime(&t);
-
-                               setlocale(LC_TIME, "");
-                               strftime(p, p_max_size, obj->data.s, tm);
-                       }
-                       OBJ(utime) {
-                               time_t t = time(NULL);
-                               struct tm *tm = gmtime(&t);
-
-                               strftime(p, p_max_size, obj->data.s, tm);
-                       }
-                       OBJ(tztime) {
-                               char *oldTZ = NULL;
-                               time_t t;
-                               struct tm *tm;
-
-                               if (obj->data.tztime.tz) {
-                                       oldTZ = getenv("TZ");
-                                       setenv("TZ", obj->data.tztime.tz, 1);
-                                       tzset();
-                               }
-                               t = time(NULL);
-                               tm = localtime(&t);
-
-                               setlocale(LC_TIME, "");
-                               strftime(p, p_max_size, obj->data.tztime.fmt, tm);
-                               if (oldTZ) {
-                                       setenv("TZ", oldTZ, 1);
-                                       tzset();
-                               } else {
-                                       unsetenv("TZ");
-                               }
-                               // Needless to free oldTZ since getenv gives ptr to static data
-                       }
-                       OBJ(totaldown) {
-                               human_readable(obj->data.net->recv, p, 255);
-                       }
-                       OBJ(totalup) {
-                               human_readable(obj->data.net->trans, p, 255);
-                       }
-                       OBJ(updates) {
-                               snprintf(p, p_max_size, "%d", total_updates);
-                       }
-                       OBJ(if_updatenr) {
-                               if(total_updates % updatereset != obj->data.ifblock.i - 1) {
-                                       DO_JUMP;
-                               }
-                       }
-                       OBJ(upspeed) {
-                               human_readable(obj->data.net->trans_speed, p, 255);
-                       }
-                       OBJ(upspeedf) {
-                               spaced_print(p, p_max_size, "%.1f", 8,
-                                       obj->data.net->trans_speed / 1024.0);
-                       }
-#ifdef X11
-                       OBJ(upspeedgraph) {
-                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
-                                       obj->data.net->trans_speed / 1024.0, obj->e, 1, obj->char_a, obj->char_b);
-                       }
-#endif /* X11 */
-                       OBJ(uptime_short) {
-                               format_seconds_short(p, p_max_size, (int) cur->uptime);
-                       }
-                       OBJ(uptime) {
-                               format_seconds(p, p_max_size, (int) cur->uptime);
-                       }
-                       OBJ(user_names) {
-                               snprintf(p, p_max_size, "%s", cur->users.names);
-                       }
-                       OBJ(user_terms) {
-                               snprintf(p, p_max_size, "%s", cur->users.terms);
-                       }
-                       OBJ(user_times) {
-                               snprintf(p, p_max_size, "%s", cur->users.times);
-                       }
-                       OBJ(user_number) {
-                               snprintf(p, p_max_size, "%d", cur->users.number);
-                       }
-#if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) \
-               || defined(__OpenBSD__)) && (defined(i386) || defined(__i386__))
-                       OBJ(apm_adapter) {
-                               char *msg;
-
-                               msg = get_apm_adapter();
-                               snprintf(p, p_max_size, "%s", msg);
-                               free(msg);
-                       }
-                       OBJ(apm_battery_life) {
-                               char *msg;
-
-                               msg = get_apm_battery_life();
-                               snprintf(p, p_max_size, "%s", msg);
-                               free(msg);
-                       }
-                       OBJ(apm_battery_time) {
-                               char *msg;
-
-                               msg = get_apm_battery_time();
-                               snprintf(p, p_max_size, "%s", msg);
-                               free(msg);
-                       }
-#endif /* __FreeBSD__ __OpenBSD__ */
-
-#ifdef MPD
-#define mpd_printf(fmt, val) \
-       snprintf(p, p_max_size, fmt, mpd_get_info()->val)
-#define mpd_sprintf(val) { \
-       if (!obj->data.i || obj->data.i > p_max_size) \
-               mpd_printf("%s", val); \
-       else \
-               snprintf(p, obj->data.i, "%s", mpd_get_info()->val); \
-}
-                       OBJ(mpd_title)
-                               mpd_sprintf(title);
-                       OBJ(mpd_artist)
-                               mpd_sprintf(artist);
-                       OBJ(mpd_album)
-                               mpd_sprintf(album);
-                       OBJ(mpd_random)
-                               mpd_printf("%s", random);
-                       OBJ(mpd_repeat)
-                               mpd_printf("%s", repeat);
-                       OBJ(mpd_track)
-                               mpd_sprintf(track);
-                       OBJ(mpd_name)
-                               mpd_sprintf(name);
-                       OBJ(mpd_file)
-                               mpd_sprintf(file);
-                       OBJ(mpd_vol)
-                               mpd_printf("%d", volume);
-                       OBJ(mpd_bitrate)
-                               mpd_printf("%d", bitrate);
-                       OBJ(mpd_status)
-                               mpd_printf("%s", status);
-                       OBJ(mpd_elapsed) {
-                               format_media_player_time(p, p_max_size, mpd_get_info()->elapsed);
-                       }
-                       OBJ(mpd_length) {
-                               format_media_player_time(p, p_max_size, mpd_get_info()->length);
-                       }
-                       OBJ(mpd_percent) {
-                               percent_print(p, p_max_size, (int)(mpd_get_info()->progress * 100));
-                       }
-                       OBJ(mpd_bar) {
-#ifdef X11
-                               if(output_methods & TO_X) {
-                                       new_bar(p, obj->data.pair.a, obj->data.pair.b,
-                                               (int) (mpd_get_info()->progress * 255.0f));
-                               } else {
-#endif /* X11 */
-                                       if(!obj->data.pair.a) obj->data.pair.a = DEFAULT_BAR_WIDTH_NO_X;
-                                       new_bar_in_shell(p, p_max_size, (int) (mpd_get_info()->progress * 100.0f), obj->data.pair.a);
-#ifdef X11
-                               }
-#endif /* X11 */
-                       }
-                       OBJ(mpd_smart) {
-                               struct mpd_s *mpd = mpd_get_info();
-                               int len = obj->data.i;
-                               if (len == 0 || len > p_max_size)
-                                       len = p_max_size;
-
-                               memset(p, 0, p_max_size);
-                               if (mpd->artist && *mpd->artist &&
-                                   mpd->title && *mpd->title) {
-                                       snprintf(p, len, "%s - %s", mpd->artist,
-                                               mpd->title);
-                               } else if (mpd->title && *mpd->title) {
-                                       snprintf(p, len, "%s", mpd->title);
-                               } else if (mpd->artist && *mpd->artist) {
-                                       snprintf(p, len, "%s", mpd->artist);
-                               } else if (mpd->file && *mpd->file) {
-                                       snprintf(p, len, "%s", mpd->file);
-                               } else {
-                                       *p = 0;
-                               }
-                       }
-                       OBJ(if_mpd_playing) {
-                               if (!mpd_get_info()->is_playing) {
-                                       DO_JUMP;
-                               }
-                       }
-#undef mpd_sprintf
-#undef mpd_printf
-#endif
-
-#ifdef MOC
-#define MOC_PRINT(t, a) \
-       snprintf(p, p_max_size, "%s", (moc.t ? moc.t : a))
-                       OBJ(moc_state) {
-                               MOC_PRINT(state, "??");
-                       }
-                       OBJ(moc_file) {
-                               MOC_PRINT(file, "no file");
-                       }
-                       OBJ(moc_title) {
-                               MOC_PRINT(title, "no title");
-                       }
-                       OBJ(moc_artist) {
-                               MOC_PRINT(artist, "no artist");
-                       }
-                       OBJ(moc_song) {
-                               MOC_PRINT(song, "no song");
-                       }
-                       OBJ(moc_album) {
-                               MOC_PRINT(album, "no album");
-                       }
-                       OBJ(moc_totaltime) {
-                               MOC_PRINT(totaltime, "0:00");
-                       }
-                       OBJ(moc_timeleft) {
-                               MOC_PRINT(timeleft, "0:00");
-                       }
-                       OBJ(moc_curtime) {
-                               MOC_PRINT(curtime, "0:00");
-                       }
-                       OBJ(moc_bitrate) {
-                               MOC_PRINT(bitrate, "0Kbps");
-                       }
-                       OBJ(moc_rate) {
-                               MOC_PRINT(rate, "0KHz");
-                       }
-#undef MOC_PRINT
-#endif /* MOC */
-#ifdef XMMS2
-                       OBJ(xmms2_artist) {
-                               snprintf(p, p_max_size, "%s", cur->xmms2.artist);
-                       }
-                       OBJ(xmms2_album) {
-                               snprintf(p, p_max_size, "%s", cur->xmms2.album);
-                       }
-                       OBJ(xmms2_title) {
-                               snprintf(p, p_max_size, "%s", cur->xmms2.title);
-                       }
-                       OBJ(xmms2_genre) {
-                               snprintf(p, p_max_size, "%s", cur->xmms2.genre);
-                       }
-                       OBJ(xmms2_comment) {
-                               snprintf(p, p_max_size, "%s", cur->xmms2.comment);
-                       }
-                       OBJ(xmms2_url) {
-                               snprintf(p, p_max_size, "%s", cur->xmms2.url);
-                       }
-                       OBJ(xmms2_status) {
-                               snprintf(p, p_max_size, "%s", cur->xmms2.status);
-                       }
-                       OBJ(xmms2_date) {
-                               snprintf(p, p_max_size, "%s", cur->xmms2.date);
-                       }
-                       OBJ(xmms2_tracknr) {
-                               if (cur->xmms2.tracknr != -1) {
-                                       snprintf(p, p_max_size, "%i", cur->xmms2.tracknr);
-                               }
-                       }
-                       OBJ(xmms2_bitrate) {
-                               snprintf(p, p_max_size, "%i", cur->xmms2.bitrate);
-                       }
-                       OBJ(xmms2_id) {
-                               snprintf(p, p_max_size, "%u", cur->xmms2.id);
-                       }
-                       OBJ(xmms2_size) {
-                               snprintf(p, p_max_size, "%2.1f", cur->xmms2.size);
-                       }
-                       OBJ(xmms2_elapsed) {
-                               snprintf(p, p_max_size, "%02d:%02d", cur->xmms2.elapsed / 60000,
-                                       (cur->xmms2.elapsed / 1000) % 60);
-                       }
-                       OBJ(xmms2_duration) {
-                               snprintf(p, p_max_size, "%02d:%02d",
-                                       cur->xmms2.duration / 60000,
-                                       (cur->xmms2.duration / 1000) % 60);
-                       }
-                       OBJ(xmms2_percent) {
-                               snprintf(p, p_max_size, "%2.0f", cur->xmms2.progress * 100);
-                       }
-#ifdef X11
-                       OBJ(xmms2_bar) {
-                               new_bar(p, obj->data.pair.a, obj->data.pair.b,
-                                       (int) (cur->xmms2.progress * 255.0f));
-                       }
-#endif /* X11 */
-                       OBJ(xmms2_playlist) {
-                               snprintf(p, p_max_size, "%s", cur->xmms2.playlist);
-                       }
-                       OBJ(xmms2_timesplayed) {
-                               snprintf(p, p_max_size, "%i", cur->xmms2.timesplayed);
-                       }
-                       OBJ(xmms2_smart) {
-                               if (strlen(cur->xmms2.title) < 2
-                                               && strlen(cur->xmms2.title) < 2) {
-                                       snprintf(p, p_max_size, "%s", cur->xmms2.url);
-                               } else {
-                                       snprintf(p, p_max_size, "%s - %s", cur->xmms2.artist,
-                                               cur->xmms2.title);
-                               }
-                       }
-                       OBJ(if_xmms2_connected) {
-                               if (cur->xmms2.conn_state != 1) {
-                                       DO_JUMP;
-                               }
-                       }
-#endif /* XMMS */
-#ifdef AUDACIOUS
-                       OBJ(audacious_status) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_STATUS]);
-                       }
-                       OBJ(audacious_title) {
-                               snprintf(p, cur->audacious.max_title_len > 0
-                                       ? cur->audacious.max_title_len : p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_TITLE]);
-                       }
-                       OBJ(audacious_length) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_LENGTH]);
-                       }
-                       OBJ(audacious_length_seconds) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_LENGTH_SECONDS]);
-                       }
-                       OBJ(audacious_position) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_POSITION]);
-                       }
-                       OBJ(audacious_position_seconds) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_POSITION_SECONDS]);
-                       }
-                       OBJ(audacious_bitrate) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_BITRATE]);
-                       }
-                       OBJ(audacious_frequency) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_FREQUENCY]);
-                       }
-                       OBJ(audacious_channels) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_CHANNELS]);
-                       }
-                       OBJ(audacious_filename) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_FILENAME]);
-                       }
-                       OBJ(audacious_playlist_length) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_PLAYLIST_LENGTH]);
-                       }
-                       OBJ(audacious_playlist_position) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_PLAYLIST_POSITION]);
-                       }
-                       OBJ(audacious_main_volume) {
-                               snprintf(p, p_max_size, "%s",
-                                       cur->audacious.items[AUDACIOUS_MAIN_VOLUME]);
-                       }
-#ifdef X11
-                       OBJ(audacious_bar) {
-                               double progress;
-
-                               progress =
-                                       atof(cur->audacious.items[AUDACIOUS_POSITION_SECONDS]) /
-                                       atof(cur->audacious.items[AUDACIOUS_LENGTH_SECONDS]);
-                               new_bar(p, obj->a, obj->b, (int) (progress * 255.0f));
-                       }
-#endif /* X11 */
-#endif /* AUDACIOUS */
-
-#ifdef BMPX
-                       OBJ(bmpx_title) {
-                               snprintf(p, p_max_size, "%s", cur->bmpx.title);
-                       }
-                       OBJ(bmpx_artist) {
-                               snprintf(p, p_max_size, "%s", cur->bmpx.artist);
-                       }
-                       OBJ(bmpx_album) {
-                               snprintf(p, p_max_size, "%s", cur->bmpx.album);
-                       }
-                       OBJ(bmpx_uri) {
-                               snprintf(p, p_max_size, "%s", cur->bmpx.uri);
-                       }
-                       OBJ(bmpx_track) {
-                               snprintf(p, p_max_size, "%i", cur->bmpx.track);
-                       }
-                       OBJ(bmpx_bitrate) {
-                               snprintf(p, p_max_size, "%i", cur->bmpx.bitrate);
-                       }
-#endif /* BMPX */
-                       /* we have four different types of top (top, top_mem,
-                        * top_time and top_io). To avoid having almost-same code four
-                        * times, we have this special handler. */
-                       break;
-                       case OBJ_top:
-                               parse_top_args("top", obj->data.top.s, obj);
-                               if (!needed) needed = cur->cpu;
-                       case OBJ_top_mem:
-                               parse_top_args("top_mem", obj->data.top.s, obj);
-                               if (!needed) needed = cur->memu;
-                       case OBJ_top_time:
-                               parse_top_args("top_time", obj->data.top.s, obj);
-                               if (!needed) needed = cur->time;
-#ifdef IOSTATS
-                       case OBJ_top_io:
-                               parse_top_args("top_io", obj->data.top.s, obj);
-                               if (!needed) needed = cur->io;
-#endif
-
-                               if (needed[obj->data.top.num]) {
-                                       char *timeval;
-
-                                       switch (obj->data.top.type) {
-                                               case TOP_NAME:
-                                                       snprintf(p, top_name_width + 1, "%-*s", top_name_width,
-                                                                       needed[obj->data.top.num]->name);
-                                                       break;
-                                               case TOP_CPU:
-                                                       snprintf(p, 7, "%6.2f",
-                                                                       needed[obj->data.top.num]->amount);
-                                                       break;
-                                               case TOP_PID:
-                                                       snprintf(p, 6, "%5i",
-                                                                       needed[obj->data.top.num]->pid);
-                                                       break;
-                                               case TOP_MEM:
-                                                       snprintf(p, 7, "%6.2f",
-                                                                       needed[obj->data.top.num]->totalmem);
-                                                       break;
-                                               case TOP_TIME:
-                                                       timeval = format_time(
-                                                                       needed[obj->data.top.num]->total_cpu_time, 9);
-                                                       snprintf(p, 10, "%9s", timeval);
-                                                       free(timeval);
-                                                       break;
-                                               case TOP_MEM_RES:
-                                                       human_readable(needed[obj->data.top.num]->rss,
-                                                                       p, 255);
-                                                       break;
-                                               case TOP_MEM_VSIZE:
-                                                       human_readable(needed[obj->data.top.num]->vsize,
-                                                                       p, 255);
-                                                       break;
-#ifdef IOSTATS
-                                               case TOP_READ_BYTES:
-                                                       human_readable(needed[obj->data.top.num]->read_bytes / update_interval,
-                                                                       p, 255);
-                                                       break;
-                                               case TOP_WRITE_BYTES:
-                                                       human_readable(needed[obj->data.top.num]->write_bytes / update_interval,
-                                                                       p, 255);
-                                                       break;
-                                               case TOP_IO_PERC:
-                                                       snprintf(p, 7, "%6.2f",
-                                                                       needed[obj->data.top.num]->io_perc);
-                                                       break;
-#endif
-                                       }
-                               }
-                       OBJ(tail) {
-                               print_tailhead("tail", obj, p, p_max_size);
-                       }
-                       OBJ(head) {
-                               print_tailhead("head", obj, p, p_max_size);
-                       }
-                       OBJ(lines) {
-                               FILE *fp = open_file(obj->data.s, &obj->a);
-
-                               if(fp != NULL) {
-/* FIXME: use something more general (see also tail.c, head.c */
-#define BUFSZ 0x1000
-                                       char buf[BUFSZ];
-                                       int j, lines;
-
-                                       lines = 0;
-                                       while(fgets(buf, BUFSZ, fp) != NULL){
-                                               for(j = 0; buf[j] != 0; j++) {
-                                                       if(buf[j] == '\n') {
-                                                               lines++;
-                                                       }
-                                               }
-                                       }
-                                       sprintf(p, "%d", lines);
-                                       fclose(fp);
-                               } else {
-                                       sprintf(p, "File Unreadable");
-                               }
-                       }
-
-                       OBJ(words) {
-                               FILE *fp = open_file(obj->data.s, &obj->a);
-
-                               if(fp != NULL) {
-                                       char buf[BUFSZ];
-                                       int j, words;
-                                       char inword = FALSE;
-
-                                       words = 0;
-                                       while(fgets(buf, BUFSZ, fp) != NULL){
-                                               for(j = 0; buf[j] != 0; j++) {
-                                                       if(!isspace(buf[j])) {
-                                                               if(inword == FALSE) {
-                                                                       words++;
-                                                                       inword = TRUE;
-                                                               }
-                                                       } else {
-                                                               inword = FALSE;
-                                                       }
-                                               }
-                                       }
-                                       sprintf(p, "%d", words);
-                                       fclose(fp);
-                               } else {
-                                       sprintf(p, "File Unreadable");
-                               }
-                       }
-#ifdef TCP_PORT_MONITOR
-                       OBJ(tcp_portmon) {
-                               tcp_portmon_action(p, p_max_size,
-                                                  &obj->data.tcp_port_monitor);
-                       }
-#endif /* TCP_PORT_MONITOR */
-
-#ifdef HAVE_ICONV
-                       OBJ(iconv_start) {
-                               set_iconv_converting(1);
-                               set_iconv_selected(obj->a);
-                       }
-                       OBJ(iconv_stop) {
-                               set_iconv_converting(0);
-                               set_iconv_selected(0);
-                       }
-#endif /* HAVE_ICONV */
-
-                       OBJ(entropy_avail) {
-                               snprintf(p, p_max_size, "%d", cur->entropy.entropy_avail);
-                       }
-                       OBJ(entropy_perc) {
-                               percent_print(p, p_max_size,
-                                             cur->entropy.entropy_avail *
-                                             100 / cur->entropy.poolsize);
-                       }
-                       OBJ(entropy_poolsize) {
-                               snprintf(p, p_max_size, "%d", cur->entropy.poolsize);
-                       }
-                       OBJ(entropy_bar) {
-                               double entropy_perc;
-
-                               entropy_perc = (double) cur->entropy.entropy_avail /
-                                       (double) cur->entropy.poolsize;
-#ifdef X11
-                               if(output_methods & TO_X) {
-                                       new_bar(p, obj->a, obj->b, (int) (entropy_perc * 255.0f));
-                               } else {
-#endif /* X11 */
-                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
-                                       new_bar_in_shell(p, p_max_size, (int) (entropy_perc * 100.0f), obj->a);
-#ifdef X11
-                               }
-#endif /* X11 */
-                       }
-#ifdef IBM
-                       OBJ(smapi) {
-                               char *s;
-                               if(obj->data.s) {
-                                       s = smapi_get_val(obj->data.s);
-                                       snprintf(p, p_max_size, "%s", s);
-                                       free(s);
-                               }
-                       }
-                       OBJ(if_smapi_bat_installed) {
-                               int idx;
-                               if(obj->data.ifblock.s && sscanf(obj->data.ifblock.s, "%i", &idx) == 1) {
-                                       if(!smapi_bat_installed(idx)) {
-                                               DO_JUMP;
-                                       }
-                               } else
-                                       NORM_ERR("argument to if_smapi_bat_installed must be an integer");
-                       }
-                       OBJ(smapi_bat_perc) {
-                               int idx, val;
-                               if(obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
-                                       val = smapi_bat_installed(idx) ?
-                                               smapi_get_bat_int(idx, "remaining_percent") : 0;
-                                       percent_print(p, p_max_size, val);
-                               } else
-                                       NORM_ERR("argument to smapi_bat_perc must be an integer");
-                       }
-                       OBJ(smapi_bat_temp) {
-                               int idx, val;
-                               if(obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
-                                       val = smapi_bat_installed(idx) ?
-                                               smapi_get_bat_int(idx, "temperature") : 0;
-                                       /* temperature is in milli degree celsius */
-                                       temp_print(p, p_max_size, val / 1000, TEMP_CELSIUS);
-                               } else
-                                       NORM_ERR("argument to smapi_bat_temp must be an integer");
-                       }
-                       OBJ(smapi_bat_power) {
-                               int idx, val;
-                               if(obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
-                                       val = smapi_bat_installed(idx) ?
-                                               smapi_get_bat_int(idx, "power_now") : 0;
-                                       /* power_now is in mW, set to W with one digit precision */
-                                       snprintf(p, p_max_size, "%.1f", ((double)val / 1000));
-                               } else
-                                       NORM_ERR("argument to smapi_bat_power must be an integer");
-                       }
-#ifdef X11
-                       OBJ(smapi_bat_bar) {
-                               if(obj->data.i >= 0 && smapi_bat_installed(obj->data.i))
-                                       new_bar(p, obj->a, obj->b, (int)
-                                                       (255 * smapi_get_bat_int(obj->data.i, "remaining_percent") / 100));
-                               else
-                                       new_bar(p, obj->a, obj->b, 0);
-                       }
-#endif /* X11 */
-#endif /* IBM */
-                       OBJ(include) {
-                               if(obj->sub) {
-                                       char buf[max_user_text];
-
-                                       generate_text_internal(buf, max_user_text, *obj->sub, cur);
-                                       snprintf(p, p_max_size, "%s", buf);
-                               } else {
-                                       p[0] = 0;
-                               }
-                       }
-                       OBJ(blink) {
-                               //blinking like this can look a bit ugly if the chars in the font don't have the same width
-                               char buf[max_user_text];
-                               unsigned int j;
-
-                               generate_text_internal(buf, max_user_text, *obj->sub, cur);
-                               snprintf(p, p_max_size, "%s", buf);
-                               if(total_updates % 2) {
-                                       for(j=0; p[j] != 0; j++) {
-                                               p[j] = ' ';
-                                       }
-                               }
-                       }
-                       OBJ(to_bytes) {
-                               char buf[max_user_text];
-                               long long bytes;
-                               char unit[16];  // 16 because we can also have long names (like mega-bytes)
-
-                               generate_text_internal(buf, max_user_text, *obj->sub, cur);
-                               if(sscanf(buf, "%lli%s", &bytes, unit) == 2 && strlen(unit) < 16){
-                                       if(strncasecmp("b", unit, 1) == 0) snprintf(buf, max_user_text, "%lli", bytes);
-                                       else if(strncasecmp("k", unit, 1) == 0) snprintf(buf, max_user_text, "%lli", bytes * 1024);
-                                       else if(strncasecmp("m", unit, 1) == 0) snprintf(buf, max_user_text, "%lli", bytes * 1024 * 1024);
-                                       else if(strncasecmp("g", unit, 1) == 0) snprintf(buf, max_user_text, "%lli", bytes * 1024 * 1024 * 1024);
-                                       else if(strncasecmp("t", unit, 1) == 0) snprintf(buf, max_user_text, "%lli", bytes * 1024 * 1024 * 1024 * 1024);
-                               }
-                               snprintf(p, p_max_size, "%s", buf);
-                       }
-                       OBJ(scroll) {
-                               unsigned int j, colorchanges = 0, frontcolorchanges = 0, visibcolorchanges = 0, strend;
-                               char *pwithcolors;
-                               char buf[max_user_text];
-                               generate_text_internal(buf, max_user_text,
-                                                      *obj->sub, cur);
-                               for(j = 0; buf[j] != 0; j++) {
-                                       switch(buf[j]) {
-                                       case '\n':      //place all the lines behind each other with LINESEPARATOR between them
-#define LINESEPARATOR '|'
-                                               buf[j]=LINESEPARATOR;
-                                               break;
-                                       case SPECIAL_CHAR:
-                                               colorchanges++;
-                                               break;
-                                       }
-                               }
-                               //no scrolling necessary if the length of the text to scroll is too short
-                               if (strlen(buf) - colorchanges <= obj->data.scroll.show) {
-                                       snprintf(p, p_max_size, "%s", buf);
-                                       break;
-                               }
-                               //make sure a colorchange at the front is not part of the string we are going to show
-                               while(*(buf + obj->data.scroll.start) == SPECIAL_CHAR) {
-                                       obj->data.scroll.start++;
-                               }
-                               //place all chars that should be visible in p, including colorchanges
-                               for(j=0; j < obj->data.scroll.show + visibcolorchanges; j++) {
-                                       p[j] = *(buf + obj->data.scroll.start + j);
-                                       if(p[j] == SPECIAL_CHAR) {
-                                               visibcolorchanges++;
-                                       }
-                                       //if there is still room fill it with spaces
-                                       if( ! p[j]) break;
-                               }
-                               for(; j < obj->data.scroll.show + visibcolorchanges; j++) {
-                                       p[j] = ' ';
-                               }
-                               p[j] = 0;
-                               //count colorchanges in front of the visible part and place that many colorchanges in front of the visible part
-                               for(j = 0; j < obj->data.scroll.start; j++) {
-                                       if(buf[j] == SPECIAL_CHAR) frontcolorchanges++;
-                               }
-                               pwithcolors=malloc(strlen(p) + 1 + colorchanges - visibcolorchanges);
-                               for(j = 0; j < frontcolorchanges; j++) {
-                                       pwithcolors[j] = SPECIAL_CHAR;
-                               }
-                               pwithcolors[j] = 0;
-                               strcat(pwithcolors,p);
-                               strend = strlen(pwithcolors);
-                               //and place the colorchanges not in front or in the visible part behind the visible part
-                               for(j = 0; j < colorchanges - frontcolorchanges - visibcolorchanges; j++) {
-                                       pwithcolors[strend + j] = SPECIAL_CHAR;
-                               }
-                               pwithcolors[strend + j] = 0;
-                               strcpy(p, pwithcolors);
-                               free(pwithcolors);
-                               //scroll
-                               obj->data.scroll.start += obj->data.scroll.step;
-                               if(buf[obj->data.scroll.start] == 0){
-                                        obj->data.scroll.start = 0;
-                               }
-#ifdef X11
-                               //reset color when scroll is finished
-                               new_fg(p + strlen(p), obj->data.scroll.resetcolor);
-#endif
-                       }
-                       OBJ(combine) {
-                               char buf[2][max_user_text];
-                               int i, j;
-                               long longest=0;
-                               int nextstart;
-                               int nr_rows[2];
-                               struct llrows {
-                                       char* row;
-                                       struct llrows* next;
-                               };
-                               struct llrows *ll_rows[2], *current[2];
-                               struct text_object * objsub = obj->sub;
-
-                               p[0]=0;
-                               for(i=0; i<2; i++) {
-                                       nr_rows[i] = 1;
-                                       nextstart = 0;
-                                       ll_rows[i] = malloc(sizeof(struct llrows));
-                                       current[i] = ll_rows[i];
-                                       for(j=0; j<i; j++) objsub = objsub->sub;
-                                       generate_text_internal(buf[i], max_user_text, *objsub, cur);
-                                       for(j=0; buf[i][j] != 0; j++) {
-                                               if(buf[i][j] == '\t') buf[i][j] = ' ';
-                                               if(buf[i][j] == '\n') {
-                                                       buf[i][j] = 0;
-                                                       current[i]->row = strdup(buf[i]+nextstart);
-                                                       if(i==0 && (long)strlen(current[i]->row) > longest) longest = (long)strlen(current[i]->row);
-                                                       current[i]->next = malloc(sizeof(struct llrows));
-                                                       current[i] = current[i]->next;
-                                                       nextstart = j + 1;
-                                                       nr_rows[i]++;
-                                               }
-                                       }
-                                       current[i]->row = strdup(buf[i]+nextstart);
-                                       if(i==0 && (long)strlen(current[i]->row) > longest) longest = (long)strlen(current[i]->row);
-                                       current[i]->next = NULL;
-                                       current[i] = ll_rows[i];
-                               }
-                               for(j=0; j < (nr_rows[0] > nr_rows[1] ? nr_rows[0] : nr_rows[1] ); j++) {
-                                       if(current[0]) {
-                                               strcat(p, current[0]->row);
-                                               i=strlen(current[0]->row);
-                                       }else i = 0;
-                                       while(i < longest) {
-                                               strcat(p, " ");
-                                               i++;
-                                       }
-                                       if(current[1]) {
-                                               strcat(p, obj->data.combine.seperation);
-                                               strcat(p, current[1]->row);
-                                       }
-                                       strcat(p, "\n");
-                                       #ifdef HAVE_OPENMP
-                                       #pragma omp parallel for schedule(dynamic,10)
-                                       #endif /* HAVE_OPENMP */
-                                       for(i=0; i<2; i++) if(current[i]) current[i]=current[i]->next;
-                               }
-                               #ifdef HAVE_OPENMP
-                               #pragma omp parallel for schedule(dynamic,10)
-                               #endif /* HAVE_OPENMP */
-                               for(i=0; i<2; i++) {
-                                       while(ll_rows[i] != NULL) {
-                                               current[i]=ll_rows[i];
-                                               free(current[i]->row);
-                                               ll_rows[i]=current[i]->next;
-                                               free(current[i]);
-                                       }
-                               }
-                       }
-#ifdef NVIDIA
-                       OBJ(nvidia) {
-                               int value = get_nvidia_value(obj->data.nvidia.type, display);
-                               if(value == -1)
-                                       snprintf(p, p_max_size, "N/A");
-                               else if (obj->data.nvidia.type == NV_TEMP)
-                                       temp_print(p, p_max_size, (double)value, TEMP_CELSIUS);
-                               else if (obj->data.nvidia.print_as_float &&
-                                               value > 0 && value < 100)
-                                       snprintf(p, p_max_size, "%.1f", (float)value);
-                               else
-                                       snprintf(p, p_max_size, "%d", value);
-                       }
-#endif /* NVIDIA */
-#ifdef APCUPSD
-                       OBJ(apcupsd) {
-                               /* This is just a meta-object to set host:port */
-                       }
-                       OBJ(apcupsd_name) {
-                               snprintf(p, p_max_size, "%s",
-                                                cur->apcupsd.items[APCUPSD_NAME]);
-                       }
-                       OBJ(apcupsd_model) {
-                               snprintf(p, p_max_size, "%s",
-                                                cur->apcupsd.items[APCUPSD_MODEL]);
-                       }
-                       OBJ(apcupsd_upsmode) {
-                               snprintf(p, p_max_size, "%s",
-                                                cur->apcupsd.items[APCUPSD_UPSMODE]);
-                       }
-                       OBJ(apcupsd_cable) {
-                               snprintf(p, p_max_size, "%s",
-                                                cur->apcupsd.items[APCUPSD_CABLE]);
-                       }
-                       OBJ(apcupsd_status) {
-                               snprintf(p, p_max_size, "%s",
-                                                cur->apcupsd.items[APCUPSD_STATUS]);
-                       }
-                       OBJ(apcupsd_linev) {
-                               snprintf(p, p_max_size, "%s",
-                                                cur->apcupsd.items[APCUPSD_LINEV]);
-                       }
-                       OBJ(apcupsd_load) {
-                               snprintf(p, p_max_size, "%s",
-                                                cur->apcupsd.items[APCUPSD_LOAD]);
-                       }
-                       OBJ(apcupsd_loadbar) {
-                               double progress;
-#ifdef X11
-                               if(output_methods & TO_X) {
-                                       progress = atof(cur->apcupsd.items[APCUPSD_LOAD]) / 100.0 * 255.0;
-                                       new_bar(p, obj->a, obj->b, (int) progress);
-                               } else {
-#endif /* X11 */
-                                       progress = atof(cur->apcupsd.items[APCUPSD_LOAD]);
-                                       if(!obj->a) obj->a = DEFAULT_BAR_WIDTH_NO_X;
-                                       new_bar_in_shell(p, p_max_size, (int) progress, obj->a);
-#ifdef X11
-                               }
-#endif /* X11 */
-                       }
-#ifdef X11
-                       OBJ(apcupsd_loadgraph) {
-                               double progress;
-                               progress =      atof(cur->apcupsd.items[APCUPSD_LOAD]);
-                               new_graph(p, obj->a, obj->b, obj->c, obj->d,
-                                                 (int)progress, 100, 1, obj->char_a, obj->char_b);
-                       }
-                       OBJ(apcupsd_loadgauge) {
-                               double progress;
-                               progress =      atof(cur->apcupsd.items[APCUPSD_LOAD]) / 100.0 * 255.0;
-                               new_gauge(p, obj->a, obj->b,
-                                                 (int)progress);
-                       }
-#endif /* X11 */
-                       OBJ(apcupsd_charge) {
-                               snprintf(p, p_max_size, "%s",
-                                                cur->apcupsd.items[APCUPSD_CHARGE]);
-                       }
-                       OBJ(apcupsd_timeleft) {
-                               snprintf(p, p_max_size, "%s",
-                                                cur->apcupsd.items[APCUPSD_TIMELEFT]);
-                       }
-                       OBJ(apcupsd_temp) {
-                               snprintf(p, p_max_size, "%s",
-                                                cur->apcupsd.items[APCUPSD_TEMP]);
-                       }
-                       OBJ(apcupsd_lastxfer) {
-                               snprintf(p, p_max_size, "%s",
-                                                cur->apcupsd.items[APCUPSD_LASTXFER]);
-                       }
-#endif /* APCUPSD */
-                       break;
-               }
-#undef DO_JUMP
-
-
-               {
-                       size_t a = strlen(p);
-
-#ifdef HAVE_ICONV
-                       iconv_convert(a, buff_in, p, p_max_size);
-#endif /* HAVE_ICONV */
-                       if (obj->type != OBJ_text && obj->type != OBJ_execp && obj->type != OBJ_execpi) {
-                               substitute_newlines(p, a - 2);
-                       }
-                       p += a;
-                       p_max_size -= a;
-               }
-               obj = obj->next;
-       }
-#ifdef X11
-       /* load any new fonts we may have had */
-       if (need_to_load_fonts) {
-               load_fonts();
-       }
-#endif /* X11 */
-}
-
diff --git a/src/obj_display.h b/src/obj_display.h
deleted file mode 100644 (file)
index dd08a01..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
- *
- * Conky, a system monitor, based on torsmo
- *
- * Any original torsmo code is licensed under the BSD license
- *
- * All code written since the fork of torsmo is licensed under the GPL
- *
- * Please see COPYING for details
- *
- * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
- * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
- *     (see AUTHORS)
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- *
- * vim: ts=4 sw=4 noet ai cindent syntax=c
- *
- */
-
-#ifndef _CONKY_OBJ_DISPLAY_H_
-#define _CONKY_OBJ_DISPLAY_H_
-
-#include "conky.h"
-#include "text_object.h"
-
-void generate_text_internal(char *p, int p_max_size, struct text_object root,
-               struct information *cur);
-
-#endif /* _CONKY_OBJ_DISPLAY_H_ */
index 5db232c..d506306 100644 (file)
@@ -31,6 +31,8 @@
 
 /* special stuff in text_buffer */
 
+#define SPECIAL_CHAR '\x01'
+
 #define MAX_GRAPH_DEPTH 512
 
 // don't use spaces in LOGGRAPH or NORMGRAPH if you change them
diff --git a/src/structs.h b/src/structs.h
deleted file mode 100644 (file)
index b054aba..0000000
+++ /dev/null
@@ -1,335 +0,0 @@
-/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
- *
- * Conky, a system monitor, based on torsmo
- *
- * Any original torsmo code is licensed under the BSD license
- *
- * All code written since the fork of torsmo is licensed under the GPL
- *
- * Please see COPYING for details
- *
- * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
- * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
- *     (see AUTHORS)
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- *
- * vim: ts=4 sw=4 noet ai cindent syntax=c
- *
- */
-
-#ifndef _CONKY_STRUCTS_H_
-#define _CONKY_STRUCTS_H_
-
-#include "config.h"    /* defines */
-
-#include <sys/utsname.h> /* struct uname_s */
-#include <stdio.h> /* FILE */
-
-#ifdef X11
-#include "x11.h"
-#endif /* X11 */
-
-#ifdef APCUPSD
-#include "apcupsd.h"
-#endif
-
-#define MAX_TEMPLATES 10
-
-struct entropy_s {
-       unsigned int entropy_avail;
-       unsigned int poolsize;
-};
-
-struct usr_info {
-       char *names;
-       char *times;
-       char *terms;
-       int number;
-};
-
-struct gateway_info {
-       char *iface;
-       char *ip;
-       int count;
-};
-
-#ifdef X11
-struct monitor_info {
-       int number;
-       int current;
-};
-
-struct desktop_info {
-       int current;
-       int number;
-       unsigned int nitems;
-       char *all_names;
-       char *name;
-};
-
-struct x11_info {
-       struct monitor_info monitor;
-       struct desktop_info desktop;
-};
-
-#endif /* X11 */
-
-struct dns_data {
-       int nscount;
-       char **ns_list;
-};
-
-struct conftree {
-       char* string;
-       struct conftree* horz_next;
-       struct conftree* vert_next;
-       struct conftree* back;
-};
-
-struct information {
-       unsigned int mask;
-
-       struct utsname uname_s;
-
-       char freq[10];
-
-       double uptime;
-
-       /* memory information in kilobytes */
-       unsigned long long mem, memeasyfree, memfree, memmax, swap, swapfree, swapmax;
-       unsigned long long bufmem, buffers, cached;
-
-       unsigned short procs;
-       unsigned short run_procs;
-
-       float *cpu_usage;
-       /* struct cpu_stat cpu_summed; what the hell is this? */
-       unsigned int cpu_count;
-       int cpu_avg_samples;
-
-       int net_avg_samples;
-
-       int diskio_avg_samples;
-
-       float loadavg[3];
-
-       struct mail_s *mail;
-       int mail_running;
-#ifdef XMMS2
-       struct xmms2_s xmms2;
-#endif
-#ifdef AUDACIOUS
-       AUDACIOUS_S audacious;
-#endif
-#ifdef BMPX
-       struct bmpx_s bmpx;
-#endif
-       struct usr_info users;
-       struct gateway_info gw_info;
-       struct dns_data nameserver_info;
-       struct process *cpu[10];
-       struct process *memu[10];
-       struct process *time[10];
-#ifdef IOSTATS
-       struct process *io[10];
-#endif
-       struct process *first_process;
-       unsigned long looped;
-       struct entropy_s entropy;
-       double music_player_interval;
-
-#ifdef X11
-       struct x11_info x11;
-#endif
-
-#ifdef APCUPSD
-       APCUPSD_S apcupsd;
-#endif
-
-       short kflags;   /* kernel settings, see enum KFLAG */
-};
-
-enum x_initialiser_state {
-       NO = 0,
-       YES = 1,
-       NEVER = 2
-};
-
-#ifdef X11
-/* for fonts, used in fonts.c, core.c, etc */
-struct font_list {
-
-       char name[DEFAULT_TEXT_BUFFER_SIZE];
-       int num;
-       XFontStruct *font;
-
-#ifdef XFT
-       XftFont *xftfont;
-       int font_alpha;
-#endif
-};
-#endif /* X11 */
-
-typedef struct _conky_context_s {
-       /* variables holding various config settings */
-       int short_units;
-       int format_human_readable;
-       int cpu_separate;
-       enum {
-               NO_SPACER = 0,
-               LEFT_SPACER,
-               RIGHT_SPACER
-       } use_spacer;
-       int top_cpu, top_mem, top_time;
-#ifdef IOSTATS
-       int top_io;
-#endif /* IOSTATS */
-       unsigned int top_name_width;
-       int output_methods;
-       int extra_newline;
-       enum x_initialiser_state x_initialised;
-       /* Update interval */
-       double update_interval;
-       double update_interval_old;
-       double update_interval_bat;
-
-       double current_update_time, next_update_time, last_update_time;
-
-       /* struct that has all info to be shared between
-        * instances of the same text object */
-       struct information info;
-
-       /* path to config file */
-       char *current_config;
-
-       /* set to 1 if you want all text to be in uppercase */
-       unsigned int stuff_in_uppercase;
-
-       /* Run how many times? */
-       unsigned long total_run_times;
-
-       /* fork? */
-       int fork_to_background;
-
-       int cpu_avg_samples, net_avg_samples, diskio_avg_samples;
-
-       /* filenames for output */
-       char *overwrite_file; FILE *overwrite_fpointer;
-       char *append_file; FILE *append_fpointer;
-
-#ifdef X11
-       /* display to connect to */
-       char *disp;
-
-       int show_graph_scale;
-       int show_graph_range;
-
-       /* Position on the screen */
-       int text_alignment;
-       int gap_x, gap_y;
-
-       /* border */
-       int draw_borders;
-       int draw_graph_borders;
-       int stippled_borders;
-
-       int draw_shades, draw_outline;
-
-       long default_fg_color, default_bg_color, default_out_color;
-
-       /* create own window or draw stuff to root? */
-       int set_transparent;
-
-#ifdef OWN_WINDOW
-       int own_window;
-       int background_colour;
-
-       /* fixed size/pos is set if wm/user changes them */
-       int fixed_size, fixed_pos;
-#endif
-
-       int minimum_width, minimum_height;
-       int maximum_width;
-
-       int selected_font;
-       int last_font_height;
-
-       /* text size */
-       int text_start_x, text_start_y; /* text start position in window */
-       int text_width, text_height;
-
-       conky_window window;
-
-#endif /* X11 */
-
-#ifdef __OpenBSD__
-       int sensor_device;
-#endif
-
-       long color0, color1, color2, color3, color4, color5, color6, color7, color8,
-                color9;
-
-       char *template[MAX_TEMPLATES];
-
-       /* maximum size of config TEXT buffer, i.e. below TEXT line. */
-       unsigned int max_user_text;
-
-       /* maximum size of individual text buffers, ie $exec buffer size */
-       unsigned int text_buffer_size;
-
-       /* UTF-8 */
-       int utf8_mode;
-
-       /* no buffers in used memory? */
-       int no_buffers;
-
-       /* pad percentages to decimals? */
-       int pad_percents0;
-
-       char *global_text;
-
-       long global_text_lines;
-
-       int total_updates;
-       int updatereset;
-
-       int need_to_update;
-
-       /* formatted text to render on screen, generated in generate_text(), drawn
-        * in draw_stuff() */
-       char *text_buffer;
-
-       char **xargv;
-       int xargc;
-
-       /* used in colours.c */
-       short colour_depth;
-       long redmask, greenmask, bluemask;
-
-
-       struct font_list *fonts;
-       int font_count;
-
-       /* used in common.c */
-       double last_meminfo_update;
-       double last_fs_update;
-
-       unsigned long long need_mask;
-
-       /* two strings for internal use */
-       char *tmpstring1, *tmpstring2;
-} conky_context;
-
-#endif /* _CONKY_STRUCTS_H_ */
index 4838c4c..519c318 100644 (file)
@@ -43,9 +43,6 @@
 #include "nvidia.h"            /* nvidia_s */
 #endif
 
-#define SPECIAL_CHAR '\x01'
-#define SECRIT_MULTILINE_CHAR '\x02'
-
 enum text_object_type {
        OBJ_read_tcp,
        OBJ_addr,
index dc02524..c25e818 100644 (file)
--- a/src/x11.c
+++ b/src/x11.c
@@ -63,6 +63,9 @@ static int background_colour;
 /* workarea from _NET_WORKAREA, this is where window / text is aligned */
 int workarea[4];
 
+/* Window stuff */
+struct conky_window window;
+
 /* local prototypes */
 static void update_workarea(void);
 static Window find_desktop_window(Window *p_root, Window *p_desktop);
index 1717f40..8c89f3b 100644 (file)
--- a/src/x11.h
+++ b/src/x11.h
 #include <X11/extensions/Xdbe.h>
 #endif
 
-#ifdef HAVE_XDAMAGE
-#include <X11/extensions/Xdamage.h>
-#endif /* HAVE_XDAMAGE */
-
 #define ATOM(a) XInternAtom(display, #a, False)
 
 #ifdef OWN_WINDOW
@@ -44,7 +40,7 @@ enum _window_hints {
 #define TEST_HINT(mask, hint)  (mask & (1 << hint))
 #endif
 
-typedef struct _conky_window_s {
+struct conky_window {
        Window root, window, desktop;
        Drawable drawable;
        Visual *visual;
@@ -69,13 +65,7 @@ typedef struct _conky_window_s {
        unsigned int type;
        unsigned long hints;
 #endif
-       Region region;
-#ifdef HAVE_XDAMAGE
-       Damage damage;
-       XserverRegion region2, part;
-       int event_base, error_base;
-#endif
-} conky_window;
+};
 
 #ifdef HAVE_XDBE
 extern int use_xdbe;
@@ -92,6 +82,8 @@ extern int screen;
 
 extern int workarea[4];
 
+extern struct conky_window window;
+
 void init_X11(const char*);
 void init_window(int use_own_window, int width, int height, int set_trans,
        int back_colour, char **argv, int argc);