diff options
author | Axel Wagner <mail@merovius.de> | 2013-05-16 22:49:13 +0200 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2013-05-19 19:51:01 +0200 |
commit | 7a372b0f4627b9482d1276238348a1432c13fbe3 (patch) | |
tree | 0512bedece7ba0157c89f917c138934920ac1373 /include | |
parent | 8445d6a929303ca8d63f8d04fd7594a05a2734d6 (diff) |
Implement term-output-format
Diffstat (limited to 'include')
-rw-r--r-- | include/i3status.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/i3status.h b/include/i3status.h index 6b2a688..8185d38 100644 --- a/include/i3status.h +++ b/include/i3status.h @@ -1,7 +1,7 @@ #ifndef _I3STATUS_H #define _I3STATUS_H -enum { O_DZEN2, O_XMOBAR, O_I3BAR, O_NONE } output_format; +enum { O_DZEN2, O_XMOBAR, O_I3BAR, O_TERM, O_NONE } output_format; #include <stdbool.h> #include <confuse.h> @@ -133,6 +133,7 @@ bool slurp(const char *filename, char *destination, int size); void print_seperator(); char *color(const char *colorstr); char *endcolor() __attribute__ ((pure)); +void reset_cursor(void); /* src/auto_detect_format.c */ char *auto_detect_format(); |