VRChat OSC chatbox for Linux
  • Rust 92.8%
  • Nix 7.2%
Find a file
insberr 6819000c1a
All checks were successful
ci/crow/push/build Pipeline was successful
clean up the cpu_temp function because it was bothering people (and me)
2026-09-13 19:57:27 -07:00
.crow include libdrm in ci 2026-08-26 14:20:55 -07:00
assets Update readme 2026-08-10 13:15:54 -07:00
fonts huh ho like tmz (yeah) (#1) 2026-08-09 12:32:12 -07:00
src clean up the cpu_temp function because it was bothering people (and me) 2026-09-13 19:57:27 -07:00
.envrc flake 2026-02-14 12:59:49 -08:00
.gitignore ignore jetbrains bullshit 2026-07-07 17:28:07 -07:00
Cargo.lock release 0.0.2! 2026-08-27 19:24:33 -07:00
Cargo.toml release 0.0.2! 2026-08-27 19:24:33 -07:00
config.example.toml organization and custom message format now! 2026-07-07 17:29:01 -07:00
flake.lock release 0.0.2! 2026-08-27 19:24:33 -07:00
flake.nix release 0.0.2! 2026-08-27 19:24:33 -07:00
README.md fix build instructions 2026-08-27 16:29:38 -07:00

VRChat OSC Chatbox

"Magic Chatbox"-like application for VRChat on linux.

preview of the application's gui

Features

  • Currently playing media (ie. music) from mpris.
  • Hardware stats
    • GPU: usage, temp, name, VRAM usage/amount
      • NVIDIA and AMD gpu supported. Intel GPU are not supported (waiting on gfxinfo#2)
    • CPU: usage, temp, core count, name
    • RAM: usage/amount
  • More features may be added in the future. Feel free to open an issue if you have a feature request!

Installation

Binary

Download the latest release binary from https://git.insberr.com/insberr/vrc_osc_chatbox_linux/releases

Run the executable

./vrc-chatbox-<VERSION>-linux-x86_64

NixOS

With nix run

nix run git+https://git.insberr.com/insberr/vrc_osc_chatbox_linux
With flake and home manager

Add to your flake inputs

vrc-chatbox.url = "git+https://git.insberr.com/insberr/vrc_osc_chatbox_linux";

Add to your home.packages

inputs.vrc-chatbox.packages.${pkgs.stdenv.hostPlatform.system}.default

Building

Dependencies

  • Rust 1.96 or later
  • eframe deps
    • At the time of writing: libclang-dev libgtk-3-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev
  • libdrm-dev

Clone the repository.

git clone https://git.insberr.com/insberr/vrc_osc_chatbox_linux.git
cd vrc_osc_chatbox_linux

Build

cargo build