Created
March 1, 2026 16:18
-
-
Save okineadev/d7ad51168fd3b604566dc9dd65338d41 to your computer and use it in GitHub Desktop.
⌚ Galaxy Watch7 Debloating script
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
| #!/bin/bash | |
| # List of packages to completely uninstall for the current user | |
| UNINSTALL_PACKAGES=( | |
| "com.samsung.android.watch.weather" | |
| "com.samsung.android.messaging" | |
| "com.samsung.android.watch.watchface.aremoji" | |
| "com.google.android.apps.wearable.retailattractloop" | |
| "com.samsung.android.bixby.wakeup" | |
| "com.google.android.marvin.talkback" | |
| "com.samsung.sree" | |
| "com.samsung.sree.classic" | |
| "com.samsung.sree.countdown" | |
| "com.samsung.sree.spin" | |
| "com.samsung.sree.digital" | |
| "com.samsung.android.calendar" | |
| "com.samsung.android.watch.worldclock" | |
| ) | |
| # List of packages to disable (without uninstalling) | |
| DISABLE_PACKAGES=( | |
| "com.samsung.android.bixby.agent" | |
| ) | |
| # Uninstall packages | |
| echo "Uninstalling packages..." | |
| for pkg in "${UNINSTALL_PACKAGES[@]}"; do | |
| echo "Uninstalling $pkg..." | |
| adb.exe shell pm uninstall --user 0 "$pkg" | |
| done | |
| # Disable packages | |
| echo "Disabling packages..." | |
| for pkg in "${DISABLE_PACKAGES[@]}"; do | |
| echo "Disabling $pkg..." | |
| adb.exe shell pm disable-user --user 0 "$pkg" | |
| done | |
| echo "Debloat completed!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment