diff --git a/Base/home/anon/.config/Browser.ini b/Base/home/anon/.config/Browser.ini deleted file mode 100644 index ebf0bc207e..0000000000 --- a/Base/home/anon/.config/Browser.ini +++ /dev/null @@ -1,3 +0,0 @@ -[Preferences] -Home=file:///res/html/misc/welcome.html -SearchEngine= diff --git a/Userland/Applications/Browser/main.cpp b/Userland/Applications/Browser/main.cpp index 393dc5e0c7..6520ad1c81 100644 --- a/Userland/Applications/Browser/main.cpp +++ b/Userland/Applications/Browser/main.cpp @@ -67,7 +67,7 @@ ErrorOr serenity_main(Main::Arguments arguments) auto app_icon = GUI::Icon::default_icon("app-browser"); - Browser::g_home_url = Config::read_string("Browser", "Preferences", "Home", "about:blank"); + Browser::g_home_url = Config::read_string("Browser", "Preferences", "Home", "file:///res/html/misc/welcome.html"); Browser::g_search_engine = Config::read_string("Browser", "Preferences", "SearchEngine", {}); auto ad_filter_list_or_error = Core::File::open(String::formatted("{}/BrowserContentFilters.txt", Core::StandardPaths::config_directory()), Core::OpenMode::ReadOnly);