-
Notifications
You must be signed in to change notification settings - Fork 0
fix(noctalia): preserve app icon colors #1695
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -10,10 +10,16 @@ The output should include 'Brightness DarkMode ControlCenter' | |||||||||||||||||||
| End | ||||||||||||||||||||
|
|
||||||||||||||||||||
| It 'shows tray items inline instead of hiding them in the drawer' | ||||||||||||||||||||
| When run bash -c "awk '/id = \"Tray\";/{in_tray=1} in_tray && /drawerEnabled = false;/{print; exit}' '$CONFIG'" | ||||||||||||||||||||
| When run bash -c "awk '/id = \"Tray\";/{in_tray=1} in_tray && /^ }/{exit} in_tray{print}' '$CONFIG'" | ||||||||||||||||||||
| The output should include 'colorizeIcons = false;' | ||||||||||||||||||||
| The output should include 'drawerEnabled = false;' | ||||||||||||||||||||
|
Comment on lines
12
to
15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tray spec asserts the wrong target behavior. Line 14 expects Suggested fix It 'shows tray items inline instead of hiding them in the drawer'
When run bash -c "awk '/id = \"Tray\";/{in_tray=1} in_tray && /^ }/{exit} in_tray{print}' '$CONFIG'"
-The output should include 'colorizeIcons = false;'
+The output should include 'colorizeIcons = true;'
The output should include 'drawerEnabled = false;'
End📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||
| End | ||||||||||||||||||||
|
|
||||||||||||||||||||
| It 'keeps active window app icons uncolorized' | ||||||||||||||||||||
| When run bash -c "awk '/id = \"ActiveWindow\";/{in_active_window=1} in_active_window && /^ }/{exit} in_active_window{print}' '$CONFIG'" | ||||||||||||||||||||
| The output should include 'colorizeIcons = false;' | ||||||||||||||||||||
| End | ||||||||||||||||||||
|
|
||||||||||||||||||||
| It 'does not duplicate the workspace widget on the left bar' | ||||||||||||||||||||
| When run bash -c "awk '/widgets.left = \\[/{in_left=1} in_left && /id =/ {print} in_left && /^ \\];/{exit}' '$CONFIG'" | ||||||||||||||||||||
| The output should not include 'Workspace' | ||||||||||||||||||||
|
|
||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tray icon colorization is inverted relative to this PR objective.
Line 87 sets
colorizeIcons = false, but this PR’s stated goal is to colorize tray icons while keeping the drawer disabled.Suggested fix
widgets.right = [ { id = "Tray"; - colorizeIcons = false; + colorizeIcons = true; drawerEnabled = false; }📝 Committable suggestion
🤖 Prompt for AI Agents