Fix Zen profile path and style GNOME Shell search results

Zen was writing to wrong profile (fraudek5 instead of mpege0em).
Add search result, overview-tile, and list-search-result styling
to GNOME Shell theme for consistent palette in overview search.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-04-13 22:38:56 +01:00
parent 6bf4921a00
commit 4d33f68734
2 changed files with 25 additions and 1 deletions

View file

@ -54,7 +54,7 @@
[templates.zen] [templates.zen]
input_path = "${inputs.self}/templates/zen-userChrome.css" input_path = "${inputs.self}/templates/zen-userChrome.css"
output_path = "${config.home.homeDirectory}/.zen/fraudek5.Default Profile/chrome/userChrome.css" output_path = "${config.home.homeDirectory}/.zen/mpege0em.Default (release)/chrome/userChrome.css"
[templates.vscodium] [templates.vscodium]
input_path = "${inputs.self}/templates/vscodium-colors.json" input_path = "${inputs.self}/templates/vscodium-colors.json"

View file

@ -182,6 +182,30 @@ stage {
color: {{colors.on_surface.default.hex}} !important; color: {{colors.on_surface.default.hex}} !important;
} }
/* Search result items */
.list-search-result, .search-provider-icon {
background-color: {{colors.surface_container.default.hex}} !important;
color: {{colors.on_surface.default.hex}} !important;
}
.list-search-result:hover, .search-provider-icon:hover {
background-color: {{colors.surface_container_high.default.hex}} !important;
}
/* Selected/focused search result highlight */
.overview-tile:focus, .grid-search-result:focus {
background-color: {{colors.surface_container_high.default.hex}} !important;
}
.overview-tile, .grid-search-result {
background-color: {{colors.surface_container.default.hex}} !important;
color: {{colors.on_surface.default.hex}} !important;
}
.overview-tile:hover, .grid-search-result:hover {
background-color: {{colors.surface_container_high.default.hex}} !important;
}
/* App grid / app drawer */ /* App grid / app drawer */
.app-folder { .app-folder {
background-color: {{colors.surface_container_high.default.hex}} !important; background-color: {{colors.surface_container_high.default.hex}} !important;