I wrote an automated script to disable this button via ADB.
The script doesn’t just disable the feature — it also disables the button itself, so it won’t wake the phone while it’s locked.
github
Here’s how to do it manually if you prefer:
adb devices
adb shell settings put secure nt_block_essential_key 1
adb shell pm disable-user --user 0 com.nothing.ntessentialspace
adb shell pm disable-user --user 0 com.nothing.ntessentialrecorder
To turn it back on:
adb devices
adb shell settings put secure nt_block_essential_key 0
adb shell pm enable --user 0 com.nothing.ntessentialspace
adb shell pm enable --user 0 com.nothing.ntessentialrecorder
You can also use Shizuku if you don’t have a way to do this from a computer.
Shizuku is a way to run ADB commands without a computer, directly from your phone.
Download Shizuku from Google Play:
google play
How to enable and set up Shizuku:
reddit