Created
June 27, 2020 18:28
-
-
Save rtm516/cbd4b685d227b2f8134a21d9dc85d48e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/sbin/sh | |
| cat /system/build.prop | grep ro.build.characteristics | |
| cp /system/build.prop /system/build.prop.bak | |
| sed -i 's/tablet/tv/g' /system/build.prop | |
| cat /system/build.prop | grep ro.build.characteristics | |
| echo "Please reboot now" | |
| exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment