Summary
In the per-pane action toolbar (top-right of each pane), 4 of the 6 icon buttons render as the GTK4 broken-image fallback (yellow warning triangle) instead of their actual icon. The 2 remaining icons render correctly.
Affected icons
From rust/limux-host-linux/src/pane.rs (v0.1.19, ~L490-515):
| Position |
Icon name |
Result |
| 1 |
utilities-terminal-symbolic |
❌ broken-image |
| 2 |
limux-globe-symbolic |
❌ broken-image |
| 3 |
limux-split-horizontal-symbolic |
❌ broken-image |
| 4 |
limux-split-vertical-symbolic |
❌ broken-image |
| 5 |
emblem-system-symbolic |
✅ renders |
| 6 |
window-close-symbolic |
✅ renders |
All 6 buttons are created with the same icon_button(name, tooltip) helper and same .limux-pane-action CSS class, so the divergence is not in the Limux code itself.
Environment
- OS: Bazzite (Fedora 44 atomic), bazzite-nvidia-open:stable, NVIDIA driver 595.71.05
- Desktop: KDE Plasma 6 Wayland
- Icon theme: breeze-dark (inherits breeze, hicolor)
- Limux: v0.1.19 (AppImage, fresh install 2026-05-20, never worked since install)
- Launched with:
GDK_BACKEND=x11 GBM_BACKENDS_PATH=/usr/lib64/gbm LIBGL_DRIVERS_PATH=/usr/lib64/dri __EGL_VENDOR_LIBRARY_DIRS=/usr/share/glvnd/egl_vendor.d (XWayland workaround for an unrelated fractional-scaling bug)
- Bug also present with native Wayland backend (i.e. without
GDK_BACKEND=x11), so XWayland is not the cause.
What I checked / tried (no effect)
- Files exist: All 6 icon SVGs are present on disk. The 3
limux-* are in ~/.local/share/icons/hicolor/scalable/actions/ (copied from the AppImage during install per the install steps in the project's hooks). The 3 freedesktop ones are in /usr/share/icons/breeze-dark/.
- GTK debug (
GTK_DEBUG=icontheme): all 4 failing icons appear under looking up icon NAME for scale 1 — i.e. GTK does look them up. No "not found" message.
- Icon cache:
gtk-update-icon-cache -f ~/.local/share/icons/hicolor/ — cache rebuilt, confirmed includes the 3 limux-* names. No effect.
- Force
Adwaita icon theme via ~/.config/gtk-4.0/settings.ini: gtk-icon-theme-name=Adwaita. No effect (likely overridden by Plasma's xsettings under KDE).
- Override
utilities-terminal-symbolic with the Adwaita version (placed at ~/.local/share/icons/breeze-dark/apps/16/utilities-terminal-symbolic.svg so it takes priority over the system Breeze one). No effect — still rendered as broken-image.
Note on SVG format
Adwaita's symbolic icons use the GTK-standard color="#bebebe" + fill="..." recolor mechanism. Breeze's symbolic icons use a Plasma-specific <style>.ColorScheme-Text { color: ... }</style> + class="ColorScheme-Text" + fill:currentColor pattern. The local limux-*-symbolic.svg files (shipped in the AppImage and copied to ~/.local/share/icons/hicolor/scalable/actions/ during install) use neither — they just use hardcoded stroke="#bebebe" or fill="#bebebe" on shapes.
However, since emblem-system-symbolic (Breeze format, same family as utilities-terminal-symbolic which fails) renders fine, the SVG format alone doesn't seem to explain the split.
System detail that might matter
Bazzite/Fedora atomic does not ship a libpixbufloader-svg.so (no SVG loader registered in any gdk-pixbuf loaders.cache). The AppImage also does not bundle one. Yet 2 of the SVG icons still render correctly, which suggests GTK4 is loading SVGs through librsvg directly (which is installed as librsvg2-2.62.0-1.fc44), not via gdk-pixbuf. Mentioning this in case it interacts with the bundled GTK4 loader logic.
Reproduction
- Bazzite (or any modern Fedora atomic) with Breeze as the icon theme
- Install Limux 0.1.19 AppImage following the install hooks (icons copied to
~/.local/share/icons/hicolor/scalable/actions/)
- Launch — 4 of the 6 pane action icons render as broken-image fallback
Happy to provide more diagnostic info (full GTK_DEBUG=icontheme log, AppImage ldd of bundled libs, etc.) — let me know what would be most useful.
Summary
In the per-pane action toolbar (top-right of each pane), 4 of the 6 icon buttons render as the GTK4 broken-image fallback (yellow warning triangle) instead of their actual icon. The 2 remaining icons render correctly.
Affected icons
From
rust/limux-host-linux/src/pane.rs(v0.1.19, ~L490-515):utilities-terminal-symboliclimux-globe-symboliclimux-split-horizontal-symboliclimux-split-vertical-symbolicemblem-system-symbolicwindow-close-symbolicAll 6 buttons are created with the same
icon_button(name, tooltip)helper and same.limux-pane-actionCSS class, so the divergence is not in the Limux code itself.Environment
GDK_BACKEND=x11 GBM_BACKENDS_PATH=/usr/lib64/gbm LIBGL_DRIVERS_PATH=/usr/lib64/dri __EGL_VENDOR_LIBRARY_DIRS=/usr/share/glvnd/egl_vendor.d(XWayland workaround for an unrelated fractional-scaling bug)GDK_BACKEND=x11), so XWayland is not the cause.What I checked / tried (no effect)
limux-*are in~/.local/share/icons/hicolor/scalable/actions/(copied from the AppImage during install per the install steps in the project's hooks). The 3 freedesktop ones are in/usr/share/icons/breeze-dark/.GTK_DEBUG=icontheme): all 4 failing icons appear underlooking up icon NAME for scale 1— i.e. GTK does look them up. No "not found" message.gtk-update-icon-cache -f ~/.local/share/icons/hicolor/— cache rebuilt, confirmed includes the 3limux-*names. No effect.Adwaitaicon theme via~/.config/gtk-4.0/settings.ini:gtk-icon-theme-name=Adwaita. No effect (likely overridden by Plasma's xsettings under KDE).utilities-terminal-symbolicwith the Adwaita version (placed at~/.local/share/icons/breeze-dark/apps/16/utilities-terminal-symbolic.svgso it takes priority over the system Breeze one). No effect — still rendered as broken-image.Note on SVG format
Adwaita's symbolic icons use the GTK-standard
color="#bebebe"+fill="..."recolor mechanism. Breeze's symbolic icons use a Plasma-specific<style>.ColorScheme-Text { color: ... }</style>+class="ColorScheme-Text"+fill:currentColorpattern. The locallimux-*-symbolic.svgfiles (shipped in the AppImage and copied to~/.local/share/icons/hicolor/scalable/actions/during install) use neither — they just use hardcodedstroke="#bebebe"orfill="#bebebe"on shapes.However, since
emblem-system-symbolic(Breeze format, same family asutilities-terminal-symbolicwhich fails) renders fine, the SVG format alone doesn't seem to explain the split.System detail that might matter
Bazzite/Fedora atomic does not ship a
libpixbufloader-svg.so(no SVG loader registered in anygdk-pixbufloaders.cache). The AppImage also does not bundle one. Yet 2 of the SVG icons still render correctly, which suggests GTK4 is loading SVGs throughlibrsvgdirectly (which is installed aslibrsvg2-2.62.0-1.fc44), not via gdk-pixbuf. Mentioning this in case it interacts with the bundled GTK4 loader logic.Reproduction
~/.local/share/icons/hicolor/scalable/actions/)Happy to provide more diagnostic info (full
GTK_DEBUG=iconthemelog, AppImagelddof bundled libs, etc.) — let me know what would be most useful.