17 lines
385 B
QML
17 lines
385 B
QML
pragma Singleton
|
|
|
|
import Quickshell
|
|
import Quickshell.Services.Notifications
|
|
|
|
Singleton {
|
|
id: root
|
|
|
|
function getTrayIcon(id: string, icon: string): string {
|
|
if (icon.includes("?path=")) {
|
|
const [name, path] = icon.split("?path=");
|
|
icon = Qt.resolvedUrl(`${path}/${name.slice(name.lastIndexOf("/") + 1)}`);
|
|
}
|
|
return icon;
|
|
}
|
|
}
|