Introduction
Introduction Statistics Contact Development Disclaimer Help
change and fix colors - lchat - A line oriented chat front end for ii.
git clone git://git.suckless.org/lchat
Log
Files
Refs
README
---
commit c857fde6775979c260b7b56c5271efee089d7722
parent dcca3afd016fa027eecf8e1e86973597081436ad
Author: Jan Klemkow <[email protected]>
Date: Tue, 13 Mar 2018 17:52:18 +0100
change and fix colors
Diffstat:
M filter/indent.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/filter/indent.c b/filter/indent.c
@@ -7,7 +7,7 @@
#include <unistd.h>
#define color1 34
-#define color2 36
+#define color2 33
int
main(void)
@@ -44,7 +44,8 @@ main(void)
/* print prompt */
/* HH:MM nnnnnnnnnnnn ttttttttttttt */
- printf("\033[%dm%s %*s", color, timestr, 12,
+ // e[7;30;40m
+ printf("\033[1;%dm\033[K%s %*s", color, timestr, 12,
strcmp(nick, old_nick) == 0 ? "" : nick);
strlcpy(old_nick, nick, sizeof old_nick);
@@ -66,7 +67,7 @@ main(void)
fputs(word, stdout);
first = false;
}
- fputs("\033[0m", stdout); /* turn color off */
+ fputs("\033[0m\033[K", stdout); /* turn color off */
fflush(stdout);
}
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.