How to completely remove the side curtain on Xiaomi Redmi Note: from MIUI 12 to HyperOS

Side curtain notifications on smartphones Xiaomi Redmi Note โ€“ one of the most controversial elements of the interface MIUI/HyperOS. For some users, this is a convenient way to quickly access settings, for others it is an annoying element that accidentally activates when you touch the edge of the screen. 12 Pro+), where false positives occur more often.

In this article, we will discuss 5 working ways to disable the sidebar, from standard settings to hidden functions through ADB and editing system files. Importantly, some methods require unlocking the bootloader or root rights, which can affect the warranty. We will specify the risks for each option and offer alternatives for users without technical skills.

If you're looking for a way to simply reduce the sensitivity of the side curtain (rather than remove it completely), go straight to the section on setting up the trigger zone. For those who want radical changes, read about disabling through ADB or modifying system files.

Why turn off the side curtain on the Redmi Note?

According to a survey of Xiaomi owners (2023), 38% of users have accidentally opened a sidebar during games or scrolling through social media feeds, the main reasons for turning it off:

  • ๐ŸŽฎ Game mode: curtain interferes with dynamic games (PUBG, Genshin Impact, where touching the edges of the screen is part of the gameplay.
  • ๐Ÿ“ฑ False positives: on curved displays (Redmi Note 11 Pro)+, Note 12 Turbo โ€“ The sensor is often triggered by touching the palm of your hand.
  • ๐Ÿ”„ The habit of a different interface: users who have switched from iOS or stock Android often find the sidebar redundant.
  • ๐Ÿ› ๏ธ Gesture conflict: on some firmware, the curtain blocks system gestures (for example, swiping back to the back of the curtain) MIUI 14).

Important: On Redmi Note 10/11/12 HyperOS (2026), the side curtain is integrated deeper into the system than in older versions of MIUI. This means that the standard shutdown through the settings may not work โ€“ additional steps will be required.

๐Ÿ“Š How often do you accidentally open the side curtain?
It's always annoying!
Sometimes, but tolerably.
Nearby, but not intruding.
Never used it.

Method 1: Standard shutdown via MIUI/HyperOS settings

The most secure method, which works on most Redmi Note devices (except some HyperOS models), is suitable for users without root rights.

  1. Open the Settings โ†’ Display.
  2. Scroll down and select the Side Notifications Bar (on some firmware, the item is called Side Screen Gestures).
  3. Translate the slider Insert the side panel in the off position.
  4. Confirm the action if a warning system appears.

If you donโ€™t have this option in your MIUI/HyperOS version, try an alternative way:

  1. Go to Settings โ†’ Additional โ†’ Special Opportunities.
  2. Find the Gesture Management section and turn off the Sidebar.

Make sure you have the latest firmware version | Backup important data | Check if you are using sidebar features (such as quick notes) | Close all apps before changing settings-->

Limitations of the method:

  • โŒ On the Redmi Note 12 with HyperOS, this item may not be available.
  • โŒ Some firmware (e.g., global versions for Europe) hide this option.
  • โŒ After updating the system, the settings may reset.

โš ๏ธ Note: If after turning off the side curtain continues to appear when swiping from the left edge, check the navigation gesture settings in the System section. โ†’ Gestures. Sometimes there's a conflict between system and performance gestures.

Method 2: Disconnect via ADB (without root)

If the standard method didnโ€™t work, you can disable the sidebar via Android Debug Bridge (ADB), which doesnโ€™t require root rights, but requires a computer and enabled USB debugging.

Step-by-step:

  1. Turn on Developer Mode on your phone: go to Settings โ†’ About Phone and tap the MIUI version 7 times.
  2. Return to Settings โ†’ Additional โ†’ For developers and activate Debugging over USB.
  3. Connect your phone to your PC, install ADB drivers (you can download from the official Android website).
  4. Open the command line (Windows) or terminal (macOS/Linux) and type:
adb devices

(Your device name should appear. If not, check the drivers and cable.)

adb shell settings put secure sysui_edge_light_enabled 0

After you complete the command, restart the phone. The side curtain should disappear.

What to do if the team does not work?
If the sidebar is left after entering the command, try the alternative command: adb shell settings put secure. edge_light_enabled 0 Some HyperOS firmwares also require you to disable com.miui.edge: adb shell pm disable-user. --user 0 com.miui.edge Attention: disabling system services can lead to unstable operation of the interface.

How do you get the side curtain back?

adb shell settings put secure sysui_edge_light_enabled 1

โš ๏ธ Attention: On the Redmi Note 11/12 HyperOS after use ADB You may reset the automatic screen rotation setting. โ†’ Display after reboot.

Method 3: Configure the activation zone (alternative to disconnect)

If you do not need to completely remove the sidebar, but only reduce the number of false positives, you can adjust the activation zone and sensitivity.

How to change the activation zone:

  1. Go to Settings โ†’ Display โ†’ Sidebar notifications.
  2. Select Setting the Operation Zone (or Sensitivity on New Firmware).
  3. With the slider, reduce the width of the active zone to 10-15% from the edge of the screen.
  4. Activate the option to ignore random touches (if any).

Additional settings for gamers:

  • ๐ŸŽฎ Enable Game Mode in Settings and add games to the sidebar exception list.
  • ๐Ÿ”ง Install a third-party app like Edge Gestures (Play Market) to reassign swipes around the edges.
  • ๐Ÿ›ก๏ธ On the Redmi Note 12 Pro+ With a curved screen, try turning off edge sensitivity in Settings โ†’ Screen. โ†’ Additionally.
Redmi Note modelMax. Reducing the activation zoneDoes Ignoring Touch Support
Redmi Note 10/10 Pro10%Yes.
Redmi Note 11/11 Pro15%Yes (only on MIUI 13+)
Redmi Note 12/12 Pro20%Yes (requires HyperOS 1.0+)
Redmi Note 12 Pro+25% (due to curved screen)Partially (not working in all applications)

๐Ÿ’ก

If you play horizontally often, install Xiaomiโ€™s Game Space app from GetApps. It allows you to completely disable side swipes while playing, even if the system settings do not allow it.

Method 4: Complete root removal (for advanced)

If you're willing to take drastic measures and you have root rights, you can completely uninstall the system application that controls the sidebar. This is irreversible -- back up before you do it!

Instructions:

  1. Install a file manager with root support (such as Root Explorer or FX File Explorer).
  2. Go to /system/priv-app/EdgeService/.
  3. Delete or rename the EdgeService.apk file (e.g. in EdgeService.apk.bak).
  4. Also delete the EdgeService.odex file if you have one.
  5. Reboot the phone.

Alternative method (via Magisk):

  1. Install the MagiskHide Props Config module.
  2. Add a line to build.prop:
ro.miui.has_edge_light=0
  1. Reset the device.

โš ๏ธ Attention: Removal of system APK It can cause a cyclic reboot if you delete dependent files. On the Redmi Note 12 with HyperOS, this method can break navigation gestures โ€“ check compatibility on forums (e.g., check for compatibility on the forums, 4PDA or XDA-Developers).

๐Ÿ’ก

Root removal is the most radical way, but it is guaranteed to remove the side curtain forever. Use it only if other methods have not worked and you understand the risks.

Method 5: Third-Party Apps to Block Swipes

If you don't want to dig into settings or use ADB, you can install third-party utilities that block swipes around the edges of the screen.

  • ๐Ÿ›ก๏ธ Edge Gestures (Play Market) - allows you to reassign swipes from the edges of the screen to other actions or completely block them.

How to set up Edge Gestures:

  1. Install an app from the Play Market.
  2. Run it and grant permission to Special Opportunities.
  3. Select Block Edge Swipes (Blocking Swips at the Edges).
  4. Adjust the width of the blocked zone (recommended 10-15 mm from the edge).
  5. Add exceptions for apps where swipes should work (like Chrome for the side menu).

Pros and cons of the method:

AdvantagesDeficiencies
Does not require root or ADBThe application works in the background, consuming the battery
You can flexibly adjust the locking areasSome firmware requires permanent permission Special features
Supports exceptions for individual applicationsIt may conflict with system gestures

Problem Solving: What to do if nothing helps?

If none of these methods worked, check the following points:

  • ๐Ÿ”ง Check conflicting apps: Some launchers (like Nova Launcher) or gesture customization utilities can block changes to system settings.

If the side curtain appears only in certain applications:

  • ๐Ÿ“ฑ In TikTok or Instagram, turn off system gestures in the app settings.
  • ๐ŸŽฎ In games, use the built-in Game mode from Xiaomi.
  • ๐ŸŒ In browsers (Chrome, Firefox) disable the side menu in the application settings.

โš ๏ธ Note: On the Redmi Note 12 with HyperOS, after resetting, the sidebar control point in the Display menu may disappear. ADB (section 2) or install a third-party application.

FAQ: Frequent questions on the side curtain on the Redmi Note

Can I turn off the side curtain only for certain applications?
Yes, but not through system settings. Install Edge Gestures or No Edge Gestures from Play Market, which allows you to create swipe lock rules for individual applications, for example, you can only turn off the sidebar in games or instant messengers.
After being turned off via ADB, the side curtain came back after the update.
This is normal behavior โ€“ system settings are reset with major updates. MIUI/HyperOS. You need to re-execute the command. ADB: adb shell settings put secure sysui_edge_light_enabled 0 To avoid this in the future, you can create an automatic task in Tasker or MacroDroid that will apply the setup after the reboot.
My Redmi Note 12 Pro+ doesn't have a sidebar in the settings. Why?
On curved screen models (Redmi Note 11 Pro+, 12 Pro+), Xiaomi has integrated the sidebar deeper into the system. Try: Use the ADB method (Section 2). Upgrade to the latest version of HyperOS - a hidden control point has appeared in new builds. Install an alternative launcher (for example, Nova Launcher) - it can override system gestures.
The root shutdown broke the navigation gestures. How do I get it back?
After removal EdgeService.apk If you have stopped working back/home swipes, do the following: Restore deleted files from backup (if you have). Install the Magisk module to restore system functions, such as: MIUI Gestures Enabler. Reset the settings MIUI In Settings โ†’ System system โ†’ Resetting settings โ†’ Reset the settings MIUI. If nothing helps, you may need to reflash the device.
Is there a way to turn off the side curtain without a computer?
Yes, if you don't have access to a PC for ADB, Try: Use applications like Edge Gestures or No Edge Gestures (Section 5). Some firmwares have a voice assistant: say "Disable Sidebar" (requires settings in Settings). โ†’ Voice assistant. Install MIUI Hidden Settings (Play Market) โ€“ This app reveals hidden settings MIUI, including sidebar control.