diff options
author | June McEnroe <june@causal.agency> | 2020-02-02 03:34:05 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-02 03:34:05 -0500 |
commit | 052cd2ed2688867f8b980d283ea3aa410d9dd6aa (patch) | |
tree | 1cc9ec89890a3fe3e1f8085fcbd8e3f19ffa32b9 /ui.c | |
parent | Add idColors (diff) | |
download | catgirl-052cd2ed2688867f8b980d283ea3aa410d9dd6aa.tar.gz catgirl-052cd2ed2688867f8b980d283ea3aa410d9dd6aa.zip |
Remove style string macros
Diffstat (limited to '')
-rw-r--r-- | ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui.c b/ui.c index 961e448..3f74e14 100644 --- a/ui.c +++ b/ui.c @@ -271,8 +271,8 @@ static void statusUpdate(void) { int unread; char buf[256]; snprintf( - buf, sizeof(buf), C"%d%s %d %s %n("C"%02d%d"C"%d) ", - idColors[window->id], (window == windows.active ? V : ""), + buf, sizeof(buf), "\3%d%s %d %s %n(\3%02d%d\3%d) ", + idColors[window->id], (window == windows.active ? "\26" : ""), num, idNames[window->id], &unread, (window->heat > Warm ? White : idColors[window->id]), window->unread, |