Initial release of 8BitDo Control Center

Provide a Linux desktop controller configuration app with evdev input, uinput remapping, profiles, calibration, and reconnect recovery.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-21 12:18:10 -07:00
commit 6507f5f8b3
121 changed files with 15415 additions and 0 deletions

14
scripts/dev-deps.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
# Linux Mint / Ubuntu developer dependencies for Tauri 2.
sudo apt update
sudo apt install -y \
build-essential curl file pkg-config \
libayatana-appindicator3-dev libgtk-3-dev libjavascriptcoregtk-4.1-dev \
librsvg2-dev libsoup-3.0-dev libssl-dev libudev-dev libwebkit2gtk-4.1-dev
if ! command -v cargo >/dev/null; then
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
echo 'Restart your shell, then run npm install.'
fi