1# AAOS SystemUI Sample RRO's 2 3Each sample demonstrates the effects of overriding some configs in AAOS SystemUI. 4 5## How to build and install RRO 6 7```bash 8# Enable RRO for the user 0 9adb shell cmd overlay enable --user 0 com.android.systemui.rro 10# Build all sample RRO's 11mmma {path to the samples directory} 12# Install one of the sample RRO's 13adb install {path to the RRO apk} 14# Restart SystemUI 15adb shell pkill -TERM -f com.android.systemui 16```