niri-workspaces-rs

a better way to visualise workspace windows in niri window manager
Log | Files | Refs | README

commit 57f8902d9368772e2f87dc60566035db04357ebc
parent 7ab89f43a187d7f618fa95bb880ebc8b10b2a20c
Author: ryukamish <[email protected]>
Date:   Thu, 23 Apr 2026 21:00:49 +0530

add: giving chromium and zen browser color indicators

Diffstat:
Msrc/main.rs | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main.rs b/src/main.rs @@ -319,10 +319,10 @@ fn get_color( if app_id.contains("nvim") { return "#98c379".to_string(); } - if app_id == "google-chrome" || app_id.contains("chrome") { + if app_id == "chromium" || app_id.contains("chromium") { return "#ea4335".to_string(); } - if app_id == "firefox" { + if app_id == "zen" { return "#ff7139".to_string(); } if app_id == "vesktop" || app_id == "discord" {