diff options
| author | 1jehuang <[email protected]> | 2025-12-28 07:35:04 -0800 |
|---|---|---|
| committer | 1jehuang <[email protected]> | 2025-12-28 07:35:04 -0800 |
| commit | e17361e59d082e68471a13c65c45456e797a92a5 (patch) | |
| tree | 930ac8821316e56dbb93d5d7c89d9e3fa0a7160a /Cargo.toml | |
Initial commit: Niri workspaces indicator for Waybar
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
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
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 |
