Thomas Moschny
Thomas Moschny
Maybe related to #22874
Would also be happy to have a workaround, like some hackery to remove the room from the database…
Funktioniert derzeit (08/2025) zumindest in meinen Tests nicht - es geht ein neuer Tab auf, in dem der Login stattfindet, aber dann auf `https://advance-lexis-com.webopac.wuppertal.de:1443/bisnexishome?crid=...` stehen bleibt. Auf dem aktuellen Tab...
I had the same issue for [Zim](https://github.com/zim-desktop-wiki/zim-desktop-wiki), and here's how I found out the ID. The basic idea was to introspect dbus, here with `qdbus`, and `gdbus`, maybe its easier...
Reworked the recipe a bit: ```bash #!/usr/bin/bash while IFS=@ read -r dest path ; do title=$(qdbus "$dest" "$path" org.kde.StatusNotifierItem.Title) id=$(qdbus "$dest" "$path" org.kde.StatusNotifierItem.Id) printf "Title: %s, ID: %s\n" "$title" "$id"...
Here we go (in Python this time): ```python import dbus bus = dbus.SessionBus() for r in bus.get_object("org.kde.StatusNotifierWatcher", "/StatusNotifierWatcher").Get( "org.kde.StatusNotifierWatcher", "RegisteredStatusNotifierItems", dbus_interface="org.freedesktop.DBus.Properties", ): dest, path = r.split("@") props = bus.get_object(dest, path).GetAll(...
If the Id can be the same for multiple tray entries (`chrome_status_icon_1`) that would be a limitation of the configuration possibilities of this shell extension, not of the script ;)...
Ok, so maybe for the path, if not sepcified, a default should be used: ```python import dbus bus = dbus.SessionBus() for r in bus.get_object("org.kde.StatusNotifierWatcher", "/StatusNotifierWatcher").Get( "org.kde.StatusNotifierWatcher", "RegisteredStatusNotifierItems", dbus_interface="org.freedesktop.DBus.Properties", ): dest,...
Hm, #6495 should have fixed this, but it doesn't seem to work for `buildah build-using-dockerfile`. Any idea?
See https://github.com/containers/buildah/issues/5742.