A native Linux GUI application for configuring the Kinesis Advantage 360 keyboard. Since the official SmartSet app doesn't work on Linux, this tool provides a graphical interface to edit the keyboard's configuration files directly on the V-Drive.
- π¨ Visual Keyboard Layout - Interactive split keyboard visualization matching the actual Kinesis 360 layout
- π 9 Layout Support - Switch between and manage all 9 keyboard layouts
- π Layout Copying - Easily duplicate layouts to speed up configuration
- π― Key Remapping - Visual interface for remapping keys (coming soon)
- πΎ Direct V-Drive Access - Reads and writes configuration files directly to the keyboard
- π§ Native Linux - Built with GTK4 and Rust for a fast, native experience
Screenshots coming soon
- Rust 1.70 or later
- GTK4 development libraries
- libadwaita development libraries
- cairo development libraries
sudo pacman -S gtk4 libadwaita cairosudo apt install libgtk-4-dev libadwaita-1-dev libcairo2-devsudo dnf install gtk4-devel libadwaita-devel cairo-develgit clone https://github.com/codemonkey76/kinesis-configurator.git
cd kinesis-configurator
cargo build --releaseThe binary will be at target/release/kinesis-configurator
cargo runOr install globally:
cargo install --path .
kinesis-configuratorPress SmartSet + Hk3 on your Kinesis Advantage 360 keyboard to enable V-Drive mode. The keyboard will appear as a USB storage device.
The V-Drive typically doesn't auto-mount on Linux. You can either:
Option A: Manual mount
# Find the device
lsblk
# Mount it (replace /dev/sdX1 with your device)
sudo mkdir -p /mnt/kinesis
sudo mount /dev/sdX1 /mnt/kinesisOption B: Use your file manager
Most Linux file managers will show the device and allow you to mount it with a click.
- Click Detect Keyboard to find the mounted V-Drive
- Click Load Config to load your current keyboard configuration
- Switch between layouts using the numbered buttons (1-9)
- Make changes to your configuration
- Click Save Config to write changes back to the keyboard
Press SmartSet + Hk3 again to return to normal keyboard operation.
kinesis-configurator/
βββ src/
β βββ main.rs # Application entry point
β βββ ui/
β β βββ mod.rs
β β βββ main_window.rs # Main application window
β β βββ keyboard_view.rs # Visual keyboard component
β βββ config/
β β βββ mod.rs # Configuration data structures
β β βββ parser.rs # Config file parser
β β βββ generator.rs # Config file generator
β βββ vdrive/
β βββ mod.rs # V-Drive detection and I/O
βββ Cargo.toml
βββ README.md
- V-Drive detection
- Visual keyboard layout
- Layout switching (1-9)
- Layout copying
- Key remapping interface
- Macro editor
- Lighting configuration
- Import/export configurations
- Undo/redo support
- Configuration presets
Contributions are welcome! Please feel free to submit a Pull Request.
# Run with debug output
RUST_LOG=debug cargo run
# Run tests
cargo test
# Format code
cargo fmt
# Lint
cargo clippy- Language: Rust
- GUI Framework: GTK4 with libadwaita
- Architecture: Relm4 (Elm-inspired framework for GTK apps)
- Drawing: Cairo for keyboard visualization
- V-Drive auto-mounting doesn't work on some Linux distributions
- Configuration file format parsing is still in development
- Key remapping UI not yet implemented
Q: Why doesn't the V-Drive auto-mount?
A: This is a Linux limitation with certain USB storage devices. Manual mounting is required on most systems.
Q: Will this work with the original Kinesis Advantage (non-360)?
A: Not currently, as the configuration format is different. PRs welcome!
Q: Can I brick my keyboard with this?
A: Unlikely, but always keep a backup of your configuration files. The keyboard's firmware is separate from the configuration.
MIT License - see LICENSE file for details
- Built with Relm4
- Inspired by the need for Linux support in the Kinesis community
- Thanks to all contributors and testers
If you encounter issues or have questions:
- Open an issue on GitHub
- Check existing issues for solutions
- Join the discussion in the Kinesis community forums
Note: This is an unofficial tool and is not affiliated with or endorsed by Kinesis Corporation.