Merge pull request #4624 from andresilva/tray-hide-icons

Support hiding tray icons
This commit is contained in:
Alexis Rouillard
2026-07-04 00:53:31 +02:00
committed by GitHub
5 changed files with 42 additions and 12 deletions
+12 -4
View File
@@ -42,16 +42,24 @@ Addressed by *tray*
default: false ++
Enables this module to consume all left over space dynamically.
*icons*: ++
typeof: object ++
Per-application icon customization. Keys are application IDs (e.g., "spotify", "blueman"). ++
Values can be: ++
- *string*: Custom icon name or path to icon file ++
- *false*: Hide this application's tray icon completely
# EXAMPLES
```
"tray": {
"icon-size": 21,
"spacing": 10,
"icons": {
"blueman": "bluetooth",
"TelegramDesktop": "$HOME/.local/share/icons/hicolor/16x16/apps/telegram.png"
}
"icons": {
"blueman": "bluetooth",
"TelegramDesktop": "$HOME/.local/share/icons/hicolor/16x16/apps/telegram.png",
"spotify": false
}
}
```