about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-11-29 20:57:55 +0000
committerJames Booth <boothj5@gmail.com>2012-11-29 20:57:55 +0000
commit23e4ba73d4bf6d9ca0ab686528d8f329ccf012ab (patch)
tree1943a1eb8d747df2aa5fa2357294cf6795baaca4
parent1780148f59c33365d1a547cd4b9ad788e80725a0 (diff)
downloadprofani-tty-23e4ba73d4bf6d9ca0ab686528d8f329ccf012ab.tar.gz
Moved unread in titlebar
-rw-r--r--src/windows.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows.c b/src/windows.c
index 821a8ddb..5483b4ef 100644
--- a/src/windows.c
+++ b/src/windows.c
@@ -140,7 +140,7 @@ ui_refresh(void)
         gint unread = _win_get_unread();
 
         if (unread != 0) {
-            printf("%c]0;*%s%s - %s (%d unread)%c", '\033', "Profanity", version_str->str, jid, unread, '\007');
+            printf("%c]0;%s%s (%d) - %s%c", '\033', "Profanity", version_str->str, unread, jid, '\007');
         } else {
             printf("%c]0;%s%s - %s%c", '\033', "Profanity", version_str->str, jid, '\007');
         }