From 58d617429dcfb6fb1ea0f7b6cbce82266ccbb1aa Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 14 Aug 2014 17:15:09 +0200 Subject: [PATCH] core: move status line ellipsation to 50% of the line http://lists.freedesktop.org/archives/systemd-devel/2014-July/021591.html --- src/shared/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/util.c b/src/shared/util.c index 347fa1209..3d16cd1a1 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -3056,7 +3056,7 @@ int status_vprintf(const char *status, bool ellipse, bool ephemeral, const char if (emax < 3) emax = 3; - e = ellipsize(s, emax, 75); + e = ellipsize(s, emax, 50); if (e) { free(s); s = e; -- 2.30.2