C++ (Qt)QDBusInterface dbusNotification("org.freedesktop.Notifications", "/org/freedesktop/Notifications", "org.freedesktop.Notifications", QDBusConnection::sessionBus()); QString title = "messageTitle"; QString msg = "MessageText"; QVariantList args; args << QString("ProgramName"); args << QVariant(QVariant::UInt); /*args << QVariant("/home/username/icon.png");*/ //Так работает. Но так не надо. args << QVariant(":/newPrefix/icon.png"); //Так не работает. Как сюда засунуть свою картинку? args << QString(title); args << QString(msg); args << QStringList(); args << QVariantMap(); args << 1000; dbusNotification.callWithArgumentList(QDBus::AutoDetect, "Notify", args);