The wallpaper carousel on Xiaomi smartphones is one of the most controversial features of the MIUI shell. On the one hand, it offers quick access to changing background images, but on the other, it constantly interferes with random swipes, eats traffic (if you have online wallpaper loading enabled) and slows down the launcher. Many users want not just to hide it, but to remove it forever - and this is possible even without root rights.
In this article, weβll cover all the current ways, from standard settings to system commands through ADB and editing configuration files, and focus on the nuances for different versions of MIUI (12 to 14) and smartphone models β from budget Redmi Note to flagship Xiaomi 13 Ultra.
Why does the wallpaper carousel return after the shutdown?
The main problem is that MIUI restores the carousel with every major system update or reset, because it's hard-coded in system applications:
- π Update MIUI: When you install a new firmware version, some user settings are reset, including disabled system services.
- π± Resetting the launcher: If you use a standard launcher MIUI (e.g. com.miui.home, its cache and data are periodically cleared by the system.
- βοΈ Synchronization with Mi Account: When you restore backup from the cloud, standard wallpaper settings can also return.
In addition, on some models (e.g., POCO F5 or Redmi K60), the carousel is integrated into the Themes system application (com.android.themes), which cannot be completely removed without root.
Method 1: Disable the carousel via MIUI settings (without root)
The easiest method is to use the built-in system options, which is suitable for most devices on MIUI 12-14, but does not guarantee complete removal (carousel can return after the update).
- Open Settings β Wallpaper (or Settings β Personalization β Wallpaper on new versions).
- Slap the icon. βοΈ in the upper right corner (or select Wallpaper Settings).
- Find the option "Wallpaper carousel" and move the slider to the off position.
- In some cases, you need to turn off the: πΌοΈ "Automatic wallpaper change" βοΈ "Downloading wallpaper from the Internet"
If the item "Carousel wallpaper" is not on the menu, try an alternative way:
- Press the free space on the home screen β select screen settings.
- Go to the Additional settings β Wallpaper Carousel.
βοΈ Preparation for the carousel shutdown
β οΈ Note: On some devices (e.g. Xiaomi) 12T Or the Redmi Note 11 Pro.+) After turning off the carousel through the settings, it can still appear when swiping left on the home screen, which is because the function is managed not only through the interface, but also through system services.
Method 2: Remove via ADB (without root but with PC)
If the standard shutdown does not help, use it. ADB-This method works on all Xiaomi devices with an unlocked bootloader (does not require root), but requires a connection to a computer.
First, turn on the USB debugging:
- Go to Settings β About phone and tap on the MIUI version 7 times to activate the developer mode.
- Back to Settings β Additionally. β For developers.
- Activate "Debugging by USB" and confirm the permission.
Next, connect your smartphone to your PC and execute commands in the terminal (cmd for Windows or Terminal for macOS/Linux):
adb shell pm hide com.miui.miwallpaper
adb shell pm hide com.android.themesThese commands hide the system applications that handle the carousel and theme, and once the device is restarted, the carousel will disappear.
adb shell pm unhide com.miui.miwallpaper
adb shell pm unhide com.android.themesπ‘
If pm hide doesn't work, try the alternative: adb shell pm disable-user --user 0 com.miui.miwallpaper. It disables the app for the current user.
Method 3: Editing system files (requires root)
To permanently remove the carousel (including the inability to restore through updates) you will need root rights and a file manager with access to the system partition (such as Root Explorer or Mixplorer).
Instructions:
- Open the file manager and go to /system/priv-app/MiuiWallpaper or /system/app/MiuiWallpaper.
- Remove or rename the folder MiuiWallpaper (for example, in the MiuiWallpaper_bak).
- Go to /system/priv-app/Themes and delete/rename the file Themes.apk.
- Clear the cache and application data: com.miui.miwallpaper and com.android.themes via Settings β Apps.
- Carousel returns after reboot: This means the com.miui.miwallpaper system app automatically restarts.Solution: Use ADB-command to remove completely (requires root): adb shell su -c "pm uninstall --user 0 com.miui.miwallpaper" Install App Quarantine (requires root) and block com.miui.miwallpaper.
The swipe to the left does not work on the main screen.
If you have used ADB or deleted system files, the swipe may redirect to the void or cause an error.To return functionality, install a widget (like Google Discover) or roll back changes.
π‘
If the carousel still appears after all the manipulations, check for updates for the Themes app in Google Play. Sometimes Xiaomi adds the feature back through store updates.