diff --git a/Userland/Utilities/icc.cpp b/Userland/Utilities/icc.cpp index 693b812253..6c67b7fec1 100644 --- a/Userland/Utilities/icc.cpp +++ b/Userland/Utilities/icc.cpp @@ -39,5 +39,11 @@ ErrorOr serenity_main(Main::Arguments arguments) outln("rendering intent: {}", Gfx::ICC::rendering_intent_name(profile->rendering_intent())); outln("pcs illuminant: {}", profile->pcs_illuminant()); + out("id: "); + if (auto id = profile->id(); id.has_value()) + outln("{}", *id); + else + outln("(not set)"); + return 0; }