summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorryukamish <[email protected]>2026-04-23 21:00:49 +0530
committerryukamish <[email protected]>2026-04-23 21:00:49 +0530
commit57f8902d9368772e2f87dc60566035db04357ebc (patch)
tree55a674a6f39a5aea796194bbb9ff20071891effb /src
parent7ab89f43a187d7f618fa95bb880ebc8b10b2a20c (diff)
add: giving chromium and zen browser color indicators
Diffstat (limited to 'src')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 298425e..48f2b72 100644
--- 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" {