i3status/src/output.c

72 lines
2.4 KiB
C
Raw Normal View History

2009-07-21 18:26:53 +00:00
// vim:ts=8:expandtab
#include <stdbool.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <fcntl.h>
#include <dirent.h>
#include "i3status.h"
/*
* Returns the correct color format for dzen (^fg(color)) or xmobar (<fc=color>)
*
*/
char *color(const char *colorstr) {
static char colorbuf[32];
if (!cfg_getbool(cfg_general, "colors")) {
colorbuf[0] = '\0';
return colorbuf;
}
if (output_format == O_DZEN2)
2010-06-29 23:59:03 +00:00
(void)snprintf(colorbuf, sizeof(colorbuf), "^fg(%s)", cfg_getstr(cfg_general, colorstr));
else if (output_format == O_XMOBAR)
2010-06-29 23:59:03 +00:00
(void)snprintf(colorbuf, sizeof(colorbuf), "<fc=%s>", cfg_getstr(cfg_general, colorstr));
2013-05-16 20:49:13 +00:00
else if (output_format == O_TERM) {
/* The escape-sequence for color is <CSI><col>;1m (bright/bold
* output), where col is a 3-bit rgb-value with b in the
* least-significant bit. We round the given color to the
* nearist 3-bit-depth color and output the escape-sequence */
char *str = cfg_getstr(cfg_general, colorstr);
int col = strtol(str + 1, NULL, 16);
int r = (col & (0xFF << 0)) / 0x80;
int g = (col & (0xFF << 8)) / 0x8000;
int b = (col & (0xFF << 16)) / 0x800000;
col = (r << 2) | (g << 1) | b;
(void)snprintf(colorbuf, sizeof(colorbuf), "\033[3%d;1m", col);
}
return colorbuf;
}
/*
* Some color formats (xmobar) require to terminate colors again
*
*/
char *endcolor(void) {
if (output_format == O_XMOBAR)
return "</fc>";
2013-05-16 20:49:13 +00:00
else if (output_format == O_TERM)
return "\033[0m";
else return "";
}
void print_seperator(void) {
if (output_format == O_DZEN2)
2010-06-29 23:59:03 +00:00
printf("^fg(%s)^p(5;-2)^ro(2)^p()^fg()^p(5)", cfg_getstr(cfg_general, "color_separator"));
else if (output_format == O_XMOBAR)
2010-06-29 23:59:03 +00:00
printf("<fc=%s> | </fc>", cfg_getstr(cfg_general, "color_separator"));
2013-05-16 20:49:13 +00:00
else if (output_format == O_TERM)
printf(" %s|%s ", color("color_separator"), endcolor());
else if (output_format == O_NONE)
printf(" | ");
}
2013-05-16 20:49:13 +00:00
/*
* The term-output hides the cursor. We call this on exit to reset that.
*/
void reset_cursor(void) {
printf("\033[?25h");
}