|
| 1 | +# Ally Center |
| 2 | + |
| 3 | +A comprehensive Decky Loader plugin for the **ASUS ROG Ally** running SteamOS. |
| 4 | + |
| 5 | +**Author:** Keith Baker (Pixel Addict Games) |
| 6 | + |
| 7 | +## Features |
| 8 | + |
| 9 | +- **🖥️ Screen Off Mode** - Turn off the display for background downloads to save battery |
| 10 | +- **⚡ Performance Profiles** - Quick switch between Silent (15W), Performance (25W), and Turbo (30W) modes |
| 11 | +- **🔋 Battery Health** - Monitor battery health, cycle count, temperature, and set charge limits |
| 12 | +- **💡 RGB Lighting** - Control RGB colors, brightness, and effects (static, breathing, rainbow) |
| 13 | +- **📱 Device Info** - View system information including CPU, GPU, BIOS, and kernel version |
| 14 | + |
| 15 | +## Requirements |
| 16 | + |
| 17 | +- ASUS ROG Ally or ROG Ally X |
| 18 | +- SteamOS (or compatible distro like Bazzite, ChimeraOS) |
| 19 | +- [Decky Loader](https://github.com/SteamDeckHomebrew/decky-loader) installed |
| 20 | + |
| 21 | +## Installation |
| 22 | + |
| 23 | +### Quick Install (Recommended) |
| 24 | + |
| 25 | +```bash |
| 26 | +curl -L https://github.com/PixelAddictGames/allycenter/raw/main/install.sh | sh |
| 27 | +``` |
| 28 | + |
| 29 | +### Manual Install |
| 30 | + |
| 31 | +1. Download the latest release from the [Releases](https://github.com/PixelAddictGames/allycenter/releases) page |
| 32 | +2. Extract to `~/homebrew/plugins/Ally Center/` |
| 33 | +3. Restart Decky Loader or reboot |
| 34 | + |
| 35 | +## Development |
| 36 | + |
| 37 | +### Prerequisites |
| 38 | + |
| 39 | +- Node.js v16.14+ |
| 40 | +- pnpm v9 |
| 41 | + |
| 42 | +### Setup |
| 43 | + |
| 44 | +```bash |
| 45 | +# Clone the repository |
| 46 | +git clone https://github.com/PixelAddictGames/allycenter.git |
| 47 | +cd allycenter |
| 48 | + |
| 49 | +# Install dependencies |
| 50 | +pnpm install |
| 51 | + |
| 52 | +# Build the plugin |
| 53 | +pnpm run build |
| 54 | +``` |
| 55 | + |
| 56 | +### Deploy to ROG Ally |
| 57 | + |
| 58 | +1. Edit `.vscode/settings.json` with your ROG Ally's IP address and SSH credentials |
| 59 | +2. Run the deploy task in VSCode: `Ctrl+Shift+P` → `Tasks: Run Task` → `deploy-restart` |
| 60 | + |
| 61 | +Or manually: |
| 62 | + |
| 63 | +```bash |
| 64 | +# Build |
| 65 | +pnpm run build |
| 66 | + |
| 67 | +# Copy to device (replace IP with your Ally's IP) |
| 68 | +rsync -azp --delete . deck@192.168.1.100:~/homebrew/plugins/Ally\ Center/ |
| 69 | + |
| 70 | +# Restart Decky Loader |
| 71 | +ssh deck@192.168.1.100 'sudo systemctl restart plugin_loader' |
| 72 | +``` |
| 73 | + |
| 74 | +### Debugging |
| 75 | + |
| 76 | +1. On ROG Ally: Decky Settings → Developer → Enable "Allow Remote CEF Debugging" |
| 77 | +2. On your PC: Open Chrome and navigate to `chrome://inspect/#devices` |
| 78 | +3. Click Configure and add `<ally-ip>:8081` |
| 79 | +4. Click "inspect" on the QuickAccess target |
| 80 | + |
| 81 | +## Configuration |
| 82 | + |
| 83 | +Settings are stored in `~/homebrew/settings/Ally Center/settings.json` |
| 84 | + |
| 85 | +## Hardware Support |
| 86 | + |
| 87 | +| Feature | ROG Ally | ROG Ally X | |
| 88 | +| -------------------- | -------- | ---------- | |
| 89 | +| Screen Off | ✅ | ✅ | |
| 90 | +| Performance Profiles | ✅ | ✅ | |
| 91 | +| Battery Health | ✅ | ✅ | |
| 92 | +| Charge Limit | ✅ | ✅ | |
| 93 | +| RGB Lighting | ✅ | ✅ | |
| 94 | +| Device Info | ✅ | ✅ | |
| 95 | + |
| 96 | +## License |
| 97 | + |
| 98 | +MIT License - see [LICENSE](LICENSE) for details. |
| 99 | + |
| 100 | +## Credits |
| 101 | + |
| 102 | +- [Decky Loader](https://github.com/SteamDeckHomebrew/decky-loader) - Plugin framework |
| 103 | +- [decky-frontend-lib](https://github.com/SteamDeckHomebrew/decky-frontend-lib) - UI components |
| 104 | + |
| 105 | +## Support |
| 106 | + |
| 107 | +- [GitHub Issues](https://github.com/PixelAddictGames/allycenter/issues) |
| 108 | +- [Discord](https://discord.gg/pixeladdictgames) |
0 commit comments