From 17f06e97e4d07448b579086b2e0217f84236d634 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 26 Jun 2023 18:55:52 +0200 Subject: [PATCH] path tool: add some basic ansi highlighing --- src/path/path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path/path.c b/src/path/path.c index f7486ec6f8..3e022a467a 100644 --- a/src/path/path.c +++ b/src/path/path.c @@ -118,7 +118,7 @@ static int list_homes(void) { continue; } - printf("%s: %s\n", path_table[i], p); + printf("%s%s:%s %s\n", ansi_highlight(), path_table[i], ansi_normal(), p); } return r;