summaryrefslogtreecommitdiff
path: root/src/output.c
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2009-09-26 13:26:13 +0200
committerMichael Stapelberg <michael@stapelberg.de>2009-09-26 13:26:13 +0200
commitcdb450376e52bad45969c87a44908ef6e9997f39 (patch)
tree9fcd251c6840ff4b69261b850ae276f071f6e4fa /src/output.c
parent89ad3dbaa258f3c15957d5f69558d070e3c5d9bc (diff)
Bugfix: Don’t show colors in wireless info if colors are disabled (Thanks shatter)
Diffstat (limited to 'src/output.c')
-rw-r--r--src/output.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/output.c b/src/output.c
index c153a01..eee458b 100644
--- a/src/output.c
+++ b/src/output.c
@@ -26,6 +26,10 @@ void write_error_to_statusbar(const char *message) {
*/
char *color(const char *colorstr) {
static char colorbuf[32];
+ if (!use_colors) {
+ colorbuf[0] = '\0';
+ return colorbuf;
+ }
#ifdef DZEN
(void)snprintf(colorbuf, sizeof(colorbuf), "^fg(%s)", colorstr);
#elif XMOBAR