From ae9c5bf216efa91d7bec6eecf6c6c98548c234a6 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 6 Sep 2020 18:48:00 +0200 Subject: [PATCH] Userland: Tweak "w" output just slightly --- Userland/w.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/w.cpp b/Userland/w.cpp index e71147a28d..764ed6ca57 100644 --- a/Userland/w.cpp +++ b/Userland/w.cpp @@ -35,8 +35,8 @@ int main() return 1; } - printf("%-10s %-12s %-16s %-16s\n", - "USER", "TTY", "FROM", "LOGIN@"); + printf("\033[1m%-10s %-12s %-16s %-16s\033[0m\n", + "USER", "TTY", "FROM", "LOGIN@"); json.value().as_object().for_each_member([&](auto& tty, auto& value) { const JsonObject& entry = value.as_object(); auto uid = entry.get("uid").to_u32();