]> git.sur5r.net Git - i3/i3status/blobdiff - i3status.h
Bugfix: Correctly terminate output if time is specified in order but no time_format...
[i3/i3status] / i3status.h
index 0eb9ce1293d5646cb60fcfe1b4f903039b5a28bf..73221a50c9fba114c1ddee6af7da795f9df008fc 100644 (file)
@@ -5,7 +5,11 @@
 
 #include "queue.h"
 
-#define BAR "^fg(#333333)^p(5;-2)^ro(2)^p()^fg()^p(5)"
+#ifdef DZEN
+       #define BAR "^fg(#333333)^p(5;-2)^ro(2)^p()^fg()^p(5)"
+#elif XMOBAR
+       #define BAR "<fc=#333333> | </fc>"
+#endif
 #define BEGINS_WITH(haystack, needle) (strncmp(haystack, needle, strlen(needle)) == 0)
 #define max(a, b) (a > b ? a : b)
 
@@ -55,6 +59,7 @@ bool slurp(char *filename, char *destination, int size);
 /* src/output.c */
 void write_error_to_statusbar(const char *message);
 char *color(const char *colorstr);
+char *endcolor() __attribute__ ((pure));
 void cleanup_rbar_dir();
 
 /* src/config.c */