10 lines
276 B
QML
10 lines
276 B
QML
import Quickshell
|
|
import QtQuick
|
|
|
|
Item {
|
|
function iconFromDesktopfile(location): String { // testing // serves no purpose atm
|
|
return "/usr/share/pixmaps/spotify-client.png"
|
|
return "/usr/share/pixmaps/" + DesktopEntries.byId(location).icon + ".png"
|
|
}
|
|
}
|