diff options
author | James Booth <boothj5@gmail.com> | 2012-02-17 02:33:58 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2012-02-17 02:33:58 +0000 |
commit | d0f9998820d8c822e0ad2dc31729bd64b9c48330 (patch) | |
tree | 826bc12232e5f871a362360b2e3f88cd4015de32 | |
parent | 3be7dc9c6ff9ca2ef3a775ef57337889a037a0dd (diff) | |
download | profani-tty-d0f9998820d8c822e0ad2dc31729bd64b9c48330.tar.gz |
Changed title bar status
-rw-r--r-- | title_bar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/title_bar.c b/title_bar.c index af6e4b77..e19a5053 100644 --- a/title_bar.c +++ b/title_bar.c @@ -20,7 +20,7 @@ void title_bar_connected(void) int rows, cols; getmaxyx(stdscr, rows, cols); - mvwprintw(title_bar, 0, cols - 13, " connected"); + mvwprintw(title_bar, 0, cols - 14, "[ ...online ]"); } void title_bar_disconnected(void) @@ -28,7 +28,7 @@ void title_bar_disconnected(void) int rows, cols; getmaxyx(stdscr, rows, cols); - mvwprintw(title_bar, 0, cols - 13, "disconnected"); + mvwprintw(title_bar, 0, cols - 14, "[ ..offline ]"); } void title_bar_refresh(void) |