From e17361e59d082e68471a13c65c45456e797a92a5 Mon Sep 17 00:00:00 2001 From: 1jehuang Date: Sun, 28 Dec 2025 07:35:04 -0800 Subject: Initial commit: Niri workspaces indicator for Waybar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Features: - Real-time workspace display via niri IPC - Color-coded window indicators by app type - Claude Code detection (✳ icon and title) - Codex, nvim, Chrome, Firefox, Discord, Spotify colors - tmux session indicator (broken bar ¦) - Process tree scanning for terminal app detection - Workspace names shown when focused - Empty unfocused workspaces hidden --- Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..7454eeb --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "niri-workspaces" +version = "0.1.0" +edition = "2021" + +[dependencies] +niri-ipc = { version = "25.11.0", features = ["clap"] } +serde = { version = "1", features = ["derive"] } +serde_json = "1" + +[profile.release] +lto = true +strip = true +opt-level = 3 -- cgit v1.3