Files
I-DeskPet/Config/Config.qml
T
2026-02-25 23:01:52 +01:00

19 lines
276 B
QML

FileView {
id: watcher
path: root.configPath
watchChanges: true
onFileChanged: reload()
onAdapterUpdated: writeAdapter()
JsonAdapter {
id: adapter
property string gifFolder: Quickshell.shellDir + "/Gifs"
property real maxScaling: 1
}
}