Tech News
← Back to articles

Hate the new Pixel home screen search UI? Here’s how to bring the old one back

read original related products more articles

Joe Maring / Android Authority

TL;DR A recent Pixel update changed the home screen search bar behavior, but you can revert it with a workaround.

The change forces the search bar to open the standard Google Search UI rather than the Pixel Launcher’s unified search.

By using ADB to toggle a specific launcher flag, you can force the device to return to the old unified search experience.

Google constantly experiments with new ways to improve its products, but like all experiments, results vary. In a recent Pixel update, Google modified the home screen search bar to launch the standard Google Search UI rather than the Pixel Launcher’s unified search experience. While the standard UI makes it easier to access AI Mode, it lacks some features and feels less integrated. Fortunately, users who want to restore the old search experience can do so with a simple workaround. Here’s what you need to do.

Don’t want to miss the best from Android Authority? Set us as a favorite source in Google Discover to never miss our latest exclusive reports, expert analysis, and much more.

to never miss our latest exclusive reports, expert analysis, and much more. You can also set us as a preferred source in Google Search by clicking the button below.

First, follow this guide to set up ADB on your device. You’ll need this tool to run a command that overrides the flag responsible for the search UI switch. Once ADB is ready, run the following two commands one-by-one:

Code Copy Text adb shell cmd device_config override launcher enable_one_search true adb shell am force-stop com.google.android.apps.nexuslauncher

The first command overrides the “ enable_one_search ” flag read by the Pixel Launcher. Setting it to ‘ true ’ forces the launcher to use the unified search experience instead of the standard Google Search UI. The second command restarts the Pixel Launcher to apply the updated flag. To revert this, simply replace ‘ true ’ with ‘ false ’ in the first command.

... continue reading