mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-04 12:47:51 +02:00
11 lines
329 B
QML
11 lines
329 B
QML
pragma Singleton
|
|
import QtQuick
|
|
|
|
// Noctalia compat shim. Their plugins resolve app icons through XDG icon
|
|
// themes; we don't ship that machinery, so iconForAppId returns empty and
|
|
// callers fall back to their default glyph.
|
|
QtObject {
|
|
function iconFromName(name) { return "" }
|
|
function iconForAppId(appId) { return "" }
|
|
}
|