From: Lennart Poettering Date: Fri, 16 Jan 2026 20:48:29 +0000 (+0100) Subject: hostnamectl: tweak three chassis emojis X-Git-Tag: v260-rc1~378 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=834a7dfc1233ce57e93a8a1eb481b724aabd8a74;p=thirdparty%2Fsystemd.git hostnamectl: tweak three chassis emojis --- diff --git a/src/hostname/hostnamectl.c b/src/hostname/hostnamectl.c index d1bf6294220..227bcf4c504 100644 --- a/src/hostname/hostnamectl.c +++ b/src/hostname/hostnamectl.c @@ -83,11 +83,11 @@ static const char* chassis_string_to_glyph(const char *chassis) { if (streq_ptr(chassis, "watch")) return UTF8("⌚"); /* Watch */ if (streq_ptr(chassis, "handset")) - return UTF8("🕻"); /* Left Hand Telephone Receiver */ + return UTF8("📱"); /* Mobile Phone */ if (streq_ptr(chassis, "vm")) - return UTF8("🖴"); /* Hard disk */ + return UTF8("💽"); /* Computer disk */ if (streq_ptr(chassis, "container")) - return UTF8("☐"); /* Ballot Box */ + return UTF8("📦"); /* Package */ return NULL; }