31 lines
620 B
QML
Executable File
31 lines
620 B
QML
Executable File
pragma Singleton
|
|
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
|
|
Singleton {
|
|
id: root
|
|
|
|
readonly property var audioIcons: ({
|
|
microphone: "",
|
|
microphoneMuted: "",
|
|
speaker: "",
|
|
speakerMuted: "",
|
|
})
|
|
|
|
// {class}: {icon}
|
|
readonly property var appIcons: ({
|
|
"vesktop": "",
|
|
"steam": "",
|
|
"org.telegram.desktop": "",
|
|
"chromium": "",
|
|
"dev.zed.Zed": "",
|
|
"foot": "",
|
|
"gamescope": "",
|
|
"blender": "",
|
|
"Spotify": "",
|
|
"Unity": "",
|
|
"fallback": ""
|
|
})
|
|
}
|