diff options
author | June McEnroe <june@causal.agency> | 2020-02-02 03:13:50 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-02 03:13:50 -0500 |
commit | ec83332e15d31c1ffbb7112ff6743f2a5c815c71 (patch) | |
tree | 13c8812f90e5c3a830063144f47a8b3cb33e2719 /chat.c | |
parent | Preserve copyright year in term.c (diff) | |
download | catgirl-ec83332e15d31c1ffbb7112ff6743f2a5c815c71.tar.gz catgirl-ec83332e15d31c1ffbb7112ff6743f2a5c815c71.zip |
Implement window switching and status line
Diffstat (limited to '')
-rw-r--r-- | chat.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/chat.c b/chat.c index ceaf1b5..d4ed31c 100644 --- a/chat.c +++ b/chat.c @@ -76,19 +76,8 @@ int main(int argc, char *argv[]) { ircConfig(insecure, cert, priv); uiInit(); - uiFormat(Network, Cold, NULL, C "3Trave" U "ling" U C "0,3.." C "0,4." R); - uiFormat( - Network, Cold, NULL, - "Jackdaws love my big sphinx of quartz. " - "The quick brown fox jumps over the lazy dog. " - "Jackdaws love my big sphinx of quartz. " - "Jackdaws love my big sphinx of quartz. " - "Jackdaws love my big sphinx of quartz. " - "The quick brown fox jumps over the lazy dog. " - "The quick brown fox jumps over the lazy dog. " - "Jackdaws love my big sphinx of quartz. " - "Jackdaws love my big sphinx of quartz. " - ); + uiShowID(Network); + uiFormat(Network, Cold, NULL, "Traveling..."); uiDraw(); int irc = ircConnect(host, port); |