Package: nm-tray Version: 0.4.2-1 Release: buster Cheers,
I'm having the exact same issue, and the tray has no icons - but in my case, I'm running i3wm (no desktop environment): % nm-tray QSystemTrayIcon::setVisible: No Icon set As suggested, I ran strace and confirmed that missing images in /usr/share/pixmaps are indeed the issue. I ran the following command: % strace nm-tray 2>&1 | cat - > output In this strace, I was able to narrow down exactly what was missing by searching for "pixmaps": % sed -n 1861p output statx(AT_FDCWD, "/usr/share/pixmaps", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=4096, ...}) = 0 % sed -n 1862,1864p output access("/usr/share/pixmaps/preferences-system-network.png", F_OK) = -1 ENOENT (No such file or directory) access("/usr/share/pixmaps/preferences-system-network.xpm", F_OK) = -1 ENOENT (No such file or directory) access("/usr/share/pixmaps/preferences-system-network.svg", F_OK) = -1 ENOENT (No such file or directory) % sed -n 2269,2271p output access("/usr/share/pixmaps/network-transmit.png", F_OK) = -1 ENOENT (No such file or directory) access("/usr/share/pixmaps/network-transmit.xpm", F_OK) = -1 ENOENT (No such file or directory) access("/usr/share/pixmaps/network-transmit.svg", F_OK) = -1 ENOENT (No such file or directory) % sed -n 2914,2919p output access("/usr/share/pixmaps/network-wireless-signal-good-symbolic.png", F_OK) = -1 ENOENT (No such file or directory) access("/usr/share/pixmaps/network-wireless-signal-good-symbolic.xpm", F_OK) = -1 ENOENT (No such file or directory) access("/usr/share/pixmaps/network-wireless-signal-good-symbolic.svg", F_OK) = -1 ENOENT (No such file or directory) access("/usr/share/pixmaps/network-wireless-connected-75-symbolic.png", F_OK) = -1 ENOENT (No such file or directory) access("/usr/share/pixmaps/network-wireless-connected-75-symbolic.xpm", F_OK) = -1 ENOENT (No such file or directory) access("/usr/share/pixmaps/network-wireless-connected-75-symbolic.svg", F_OK) = -1 ENOENT (No such file or directory) To summarize, the following icons (other than a cursor icon which seems perhaps to have been found) were searched for: - /usr/share/pixmaps/preferences-system-network.(png|xpm|svg) - /usr/share/pixmaps/network-transmit.(png|xpm|svg) - /usr/share/pixmaps/network-wireless-signal-good-symbolic.(png|xpm|svg) - /usr/share/pixmaps/network-wireless-connected-75-symbolic.(png|xpm|svg) A run of `apt-file find preferences-system-network.png`, just the first one, yields a lot of icon themes - all of them in `/usr/share/icons` (as they should be!). Is this fixed in 0.4.3-2? Kind Regards, Sofus Rose