|
@@ -92,7 +92,10 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
|
|
|
|
TRY(server->listen(ipv4_address.value(), port));
|
|
|
|
|
|
- outln("Listening on {}:{}", ipv4_address.value(), port);
|
|
|
+ out("Listening on ");
|
|
|
+ out("\033]8;;http://{}:{}\033\\", ipv4_address.value(), port);
|
|
|
+ out("{}:{}", ipv4_address.value(), port);
|
|
|
+ outln("\033]8;;\033\\");
|
|
|
|
|
|
TRY(Core::System::unveil("/etc/timezone", "r"));
|
|
|
TRY(Core::System::unveil("/res/icons", "r"));
|