about summary refs log tree commit diff stats
path: root/title_bar.c
diff options
context:
space:
mode:
Diffstat (limited to 'title_bar.c')
-rw-r--r--title_bar.c4
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)