1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 16:47:46 +02:00

toxic: Fixed doMessenger() interval.. Toxic is much faster and responsive now.

This commit is contained in:
plutooo 2013-08-04 03:27:36 -07:00
parent 99410a5100
commit 3c43b27617

8
main.c
View File

@ -91,7 +91,7 @@ static void init_term() {
cbreak();
keypad(stdscr, 1);
noecho();
timeout(2000);
timeout(100);
if(has_colors()) {
start_color();
@ -255,15 +255,15 @@ static void draw_bar() {
attron(A_BOLD);
}
odd = (odd+1) % 2;
odd = (odd+1) % 10;
if(windows[i].blink && odd) {
if(windows[i].blink && (odd < 5)) {
attron(COLOR_PAIR(3));
}
printw(" %s", windows[i].title);
if(windows[i].blink && odd) {
if(windows[i].blink && (odd < 5)) {
attron(COLOR_PAIR(3));
}