OpenLinkHub

(β˜… 1,145)

Open source interface for iCUE LINK Hub and other Corsair AIOs, Hubs for Linux. Manage RGB lighting, fan speeds, system metrics, as well as keyboards, mice, headsets via a web dashboard.

  • .gitignore
  • 99-openlinkhub.rules
  • CHANGELOG.md
  • Dockerfile
  • go.mod
  • go.sum
  • install-user-space.sh
  • install.sh
  • LICENSE
  • main.go
  • OpenLinkHub.init
  • OpenLinkHub.service
  • README-pt_BR.md
  • README.md
  • remote-install.sh
  • upgrade.sh

πŸš€ Installation Guide

1. Get the code
git clone https://github.com/jurkovic-nikola/OpenLinkHub

Downloads the entire project code from GitHub to your computer.

cd OpenLinkHub

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
curl -fsSL https://raw.githubusercontent.com/jurkovic-nikola/OpenLinkHub/main/remote-install.sh | bash

Downloads and runs the official install script in one line β€” this handles the full setup automatically.

βœ… After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Docker

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
$ docker build . -t openlinkhub

Builds a runnable image based on the Dockerfile.

$ docker build --build-arg GIT_TAG=0.1.3-beta -t openlinkhub .

Builds a runnable image based on the Dockerfile.

$ docker run --privileged openlinkhub

Runs the built image as an actual container.

$ docker run --network host --privileged openlinkhub

Runs the built image as an actual container.

βœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

4. Go

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Go The Go compiler and toolchain.
$ CGO_CFLAGS_ALLOW='-fno-strict-overflow' go build .

Compiles the Go program into an executable.

βœ… If the build finishes without errors, it worked. If you used go run ., check the terminal output.

Pulled directly from this repo's README.

// repository documentation